<?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>Forums, Blogs, Wikis &#187; ajax</title>
	<atom:link href="http://forumsblogswikis.com/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://forumsblogswikis.com</link>
	<description>News on forums, blogs, wikis, cms, etc</description>
	<lastBuildDate>Tue, 09 Feb 2010 11:37:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Prototype returning status code 0 in Opera</title>
		<link>http://forumsblogswikis.com/2009/01/01/prototype-returning-status-code-0-in-opera/</link>
		<comments>http://forumsblogswikis.com/2009/01/01/prototype-returning-status-code-0-in-opera/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 20:18:50 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=337</guid>
		<description><![CDATA[Seems like browsers don't handle Ajax calls returning a 204 no content status code very well.  I've had issues with IE7 gets a 1223 status code instead of the 204.  Well, it looks like Opera, at least 9.5.1, gets 0 as the status code. 
I'm using Prototype version 1.6.0.3 to handle the Ajax [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2009/01/01/prototype-returning-status-code-0-in-opera/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>IE7, xmlhttprequest, and 1223 status code</title>
		<link>http://forumsblogswikis.com/2008/07/02/ie7-xmlhttprequest-and-1223-status-code/</link>
		<comments>http://forumsblogswikis.com/2008/07/02/ie7-xmlhttprequest-and-1223-status-code/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 16:35:09 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=285</guid>
		<description><![CDATA[I'm working on a program that is fairly Ajax heavy right now.  Several of the JS routines need to call for XML from the server, and when there is no data to parse I'm sending a 204 header (no content) so that the JS can know there's no data without having to parse the [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/07/02/ie7-xmlhttprequest-and-1223-status-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Parsing Error: junk after document element</title>
		<link>http://forumsblogswikis.com/2008/05/21/xml-parsing-error-junk-after-document-element/</link>
		<comments>http://forumsblogswikis.com/2008/05/21/xml-parsing-error-junk-after-document-element/#comments</comments>
		<pubDate>Thu, 22 May 2008 00:04:23 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=265</guid>
		<description><![CDATA[Since I had to go through about 20 pages to find the cause of this error, I figured I'd throw up one more with the cause that I found.  Hopefully it'll help somebody spend less time debugging the problem than I had to spend.
I've got a PHP script outputting XML that's called from an [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/05/21/xml-parsing-error-junk-after-document-element/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using $_GET and $_POST together</title>
		<link>http://forumsblogswikis.com/2008/05/17/using-_get-and-_post-together/</link>
		<comments>http://forumsblogswikis.com/2008/05/17/using-_get-and-_post-together/#comments</comments>
		<pubDate>Sat, 17 May 2008 20:04:00 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Unfiled]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=263</guid>
		<description><![CDATA[I find myself writing PHP scripts to do backend Ajax work.&#160; One of the problems I often come up against is that I need to be able to call the same script either using a query string and pulling the variables from $_GET or via a form and calling the variables from $_POST.&#160; I usually [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/05/17/using-_get-and-_post-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adsense notifier 0.9.6 released</title>
		<link>http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/</link>
		<comments>http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 02:29:01 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Unfiled]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[monetize]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/</guid>
		<description><![CDATA[A couple of months ago I noticed that the Adsense notifier down in my status bar was showing all zeros.  At the same time Google started using Ajax in the Adsense pages to show reports, and I assumed the two were related.  Since the last time there was a problem with the Adsense [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debug window for Javascript</title>
		<link>http://forumsblogswikis.com/2008/01/11/javascript-debug-window/</link>
		<comments>http://forumsblogswikis.com/2008/01/11/javascript-debug-window/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 02:39:26 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2008/01/11/javascript-debug-window/</guid>
		<description><![CDATA[I wrote this short little function when I got tired of debugging JavaScript by using the alert() function.  It pops up a new window and outputs whatever you send to the function along with the UTC date.
PLAIN TEXT
JavaScript:




function logOutput&#40;message&#41;


&#160; &#160; &#123;


&#160; &#160; debugWindow = window.open&#40;'', 'dbgWindow', 'height=300,width=400'&#41;; 


&#160; &#160; var newDate = new Date&#40;&#41;;


&#160; [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/01/11/javascript-debug-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using AJAX to get city and state from zip code</title>
		<link>http://forumsblogswikis.com/2007/08/15/using-ajax-to-get-city-and-state-from-zip-code/</link>
		<comments>http://forumsblogswikis.com/2007/08/15/using-ajax-to-get-city-and-state-from-zip-code/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 23:02:22 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.forumsblogswikis.com/2007/08/15/using-ajax-to-get-city-and-state-from-zip-code/</guid>
		<description><![CDATA[This is something that I wrote a few years ago when I first started using AJAX type calls in my programs.  It will allow you to enter a zip code, either 5 or 9 digit, and will load the city into a text field and state into a dropdown.  If the city field [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2007/08/15/using-ajax-to-get-city-and-state-from-zip-code/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

