<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: jQuery plugin:  ajax Head Request</title>
	<atom:link href="http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/feed" rel="self" type="application/rss+xml" />
	<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html</link>
	<description>Curently a work in progress. Please be patient</description>
	<lastBuildDate>Thu, 29 Dec 2011 11:41:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: BinaryKitten</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-13015</link>
		<dc:creator>BinaryKitten</dc:creator>
		<pubDate>Thu, 29 Dec 2011 11:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-13015</guid>
		<description>you use this the same as you would $.post or $.get   headers are passed to the callback. This does not make use of promises or deferred as it predates them by quite a lot.</description>
		<content:encoded><![CDATA[<p>you use this the same as you would $.post or $.get   headers are passed to the callback. This does not make use of promises or deferred as it predates them by quite a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-12842</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Thu, 08 Dec 2011 18:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-12842</guid>
		<description>hi; nice script !

im new to jquery . I have downloaded the new version and would like to know how to use it ?

thanks
jeff</description>
		<content:encoded><![CDATA[<p>hi; nice script !</p>
<p>im new to jquery . I have downloaded the new version and would like to know how to use it ?</p>
<p>thanks<br />
jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sten Hougaard</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-389</link>
		<dc:creator>Sten Hougaard</dc:creator>
		<pubDate>Fri, 17 Sep 2010 14:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-389</guid>
		<description>Hi,
I like your plug-in but missed the &quot;status&quot; header from the Response. Doing some debugging in Firefox, I found that you can actually access the &quot;Status&quot; response from a webserver in the XMLHttpRequest object in javascript. So I have created &quot;a new version&quot; of your plug-in which adds status and two other response headers to the &quot;header&quot; array returned to the callback function. It is the &quot;multipart&quot; and &quot;withCredentials&quot; headers.

Also I have created a new method &quot;exists(url, callback)&quot; which will return a true&#124;false value to the callback function. The url could be for instance a local MP3 file.

You can find my &quot;new sub version&quot; here: http://dl.dropbox.com/u/3260327/jQuery.head.js

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I like your plug-in but missed the &#8220;status&#8221; header from the Response. Doing some debugging in Firefox, I found that you can actually access the &#8220;Status&#8221; response from a webserver in the XMLHttpRequest object in javascript. So I have created &#8220;a new version&#8221; of your plug-in which adds status and two other response headers to the &#8220;header&#8221; array returned to the callback function. It is the &#8220;multipart&#8221; and &#8220;withCredentials&#8221; headers.</p>
<p>Also I have created a new method &#8220;exists(url, callback)&#8221; which will return a true|false value to the callback function. The url could be for instance a local MP3 file.</p>
<p>You can find my &#8220;new sub version&#8221; here: <a href="http://dl.dropbox.com/u/3260327/jQuery.head.js" rel="nofollow">http://dl.dropbox.com/u/3260327/jQuery.head.js</a></p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny Armstrong</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-64</link>
		<dc:creator>Danny Armstrong</dc:creator>
		<pubDate>Mon, 24 Aug 2009 07:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-64</guid>
		<description>Bug in code posted at: http://plugins.jquery.com/files/jquery.ajax_head.js.txt

Line  &quot;for (var key=0;key&lt;=l;key++) {&quot;

should be &quot;for (var key=0;key &lt; l;key++) {&quot;

Yay for 0 indexes.</description>
		<content:encoded><![CDATA[<p>Bug in code posted at: <a href="http://plugins.jquery.com/files/jquery.ajax_head.js.txt" rel="nofollow">http://plugins.jquery.com/files/jquery.ajax_head.js.txt</a></p>
<p>Line  &#8220;for (var key=0;key&lt;=l;key++) {&quot;</p>
<p>should be &quot;for (var key=0;key &lt; l;key++) {&quot;</p>
<p>Yay for 0 indexes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich Bradshaw</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-63</link>
		<dc:creator>Rich Bradshaw</dc:creator>
		<pubDate>Sun, 23 Aug 2009 16:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-63</guid>
		<description>I had to change

for (var key=0;key&lt;=l;key++) {

to

for (var key=0;key&lt;l;key++) {

to get this to work. Which makes sense now I think about it...</description>
		<content:encoded><![CDATA[<p>I had to change</p>
<p>for (var key=0;key&lt;=l;key++) {</p>
<p>to</p>
<p>for (var key=0;key&lt;l;key++) {</p>
<p>to get this to work. Which makes sense now I think about it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BinaryKitten</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-58</link>
		<dc:creator>BinaryKitten</dc:creator>
		<pubDate>Fri, 17 Jul 2009 21:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-58</guid>
		<description>Cgp,  thanks for that   .. have updated.</description>
		<content:encoded><![CDATA[<p>Cgp,  thanks for that   .. have updated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cgp</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-57</link>
		<dc:creator>cgp</dc:creator>
		<pubDate>Mon, 06 Jul 2009 16:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-57</guid>
		<description>I would note that in the source, you may wish to change your for loop from a &quot;for...in&quot; to a simple for loop. 

When I use the current code, it comes back with an undefined error for split because one of the keys points to an exists() function. (which may be being defined against the Array Object by one of my libraries). Being a function, doesn&#039;t have a split() function. 

Alternatively, you could test to make sure that what you are working against is a string. Either way will help to increase robustness.

You may find the following interesting: http://stackoverflow.com/questions/500504/javascript-for-in-with-arrays/500531</description>
		<content:encoded><![CDATA[<p>I would note that in the source, you may wish to change your for loop from a &#8220;for&#8230;in&#8221; to a simple for loop. </p>
<p>When I use the current code, it comes back with an undefined error for split because one of the keys points to an exists() function. (which may be being defined against the Array Object by one of my libraries). Being a function, doesn&#8217;t have a split() function. </p>
<p>Alternatively, you could test to make sure that what you are working against is a string. Either way will help to increase robustness.</p>
<p>You may find the following interesting: <a href="http://stackoverflow.com/questions/500504/javascript-for-in-with-arrays/500531" rel="nofollow">http://stackoverflow.com/questions/500504/javascript-for-in-with-arrays/500531</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BinaryKitten</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-53</link>
		<dc:creator>BinaryKitten</dc:creator>
		<pubDate>Fri, 29 May 2009 23:58:08 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-53</guid>
		<description>yes.. i have done so now... please visit -&gt; &lt;a href=&quot;http://plugins.jquery.com/project/jqHead&quot; rel=&quot;nofollow&quot;&gt;http://plugins.jquery.com/project/jqHead&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>yes.. i have done so now&#8230; please visit -&gt; <a href="http://plugins.jquery.com/project/jqHead" rel="nofollow">http://plugins.jquery.com/project/jqHead</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-51</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 21 May 2009 15:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-51</guid>
		<description>Was this made into a downloadable/recyclable plugin yet?  I can&#039;t find it in the jQuery plugin repository.  It would be great to see it there.</description>
		<content:encoded><![CDATA[<p>Was this made into a downloadable/recyclable plugin yet?  I can&#8217;t find it in the jQuery plugin repository.  It would be great to see it there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The jQuery Abro</title>
		<link>http://binarykitten.com/dev/jq-plugins/88-jquery-plugin-ajax-head-request.html/comment-page-1#comment-42</link>
		<dc:creator>The jQuery Abro</dc:creator>
		<pubDate>Sun, 26 Apr 2009 05:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://binarykitten.jkrswebsolutions.co.uk/?p=88#comment-42</guid>
		<description>this should be added to the core .. really.
damn that&#039;s what i was looking for some weeks ago -.-

well, next time then ^^ 
thanks a lot - great job !</description>
		<content:encoded><![CDATA[<p>this should be added to the core .. really.<br />
damn that&#8217;s what i was looking for some weeks ago -.-</p>
<p>well, next time then ^^<br />
thanks a lot &#8211; great job !</p>
]]></content:encoded>
	</item>
</channel>
</rss>

