<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>my2cents &#187; Firefox</title>
	<atom:link href="http://www.frightanic.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frightanic.com</link>
	<description>&#34;The Earth was made round so that we would not see too far down the road&#34; - Karen Blixen</description>
	<lastBuildDate>Sat, 04 Sep 2010 07:13:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to send a HEAD request from Firefox</title>
		<link>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/</link>
		<comments>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 00:11:51 +0000</pubDate>
		<dc:creator>frightanic</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Authoring]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.frightanic.com/?p=453</guid>
		<description><![CDATA[Use the JavaScript console in Firebug and run the following script snippet: var xmlhttp = new XMLHttpRequest(); xmlhttp.open("HEAD", "the_url",true); // Async HEAD request (relative path to avoid cross-domain restrictions) xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { // make sure the request is complete alert(xmlhttp.getAllResponseHeaders()) // display the headers } } xmlhttp.send(null); // send request]]></description>
			<content:encoded><![CDATA[<p>Use the JavaScript console in Firebug and run the following script snippet:</p>
<pre class="brush: javascript;" lang="JAVASCRIPT">
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("HEAD", "the_url",true); // Async HEAD request (relative path to avoid cross-domain restrictions)
xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) { // make sure the request is complete
    alert(xmlhttp.getAllResponseHeaders()) // display the headers
  }
}
xmlhttp.send(null); // send request
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
