<?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: Reading GET variables with JavaScript</title>
	<atom:link href="http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/</link>
	<description>a blog about building stuff on the web</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:05:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: monica</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-1156</link>
		<dc:creator>monica</dc:creator>
		<pubDate>Wed, 28 Jul 2010 14:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-1156</guid>
		<description>I am sending  this: nats=NjkxNzozODozMg 
but when I get back the nats the Mg from the end are missing. And I dont understand why. </description>
		<content:encoded><![CDATA[<p>I am sending  this: nats=NjkxNzozODozMg<br />
but when I get back the nats the Mg from the end are missing. And I dont understand why.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Fraser</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-961</link>
		<dc:creator>Josh Fraser</dc:creator>
		<pubDate>Fri, 11 Jun 2010 22:33:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-961</guid>
		<description>Look at the second example I posted.  The idea is that you can optionally pass in a search query string. </description>
		<content:encoded><![CDATA[<p>Look at the second example I posted.  The idea is that you can optionally pass in a search query string.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-960</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Fri, 11 Jun 2010 22:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-960</guid>
		<description>Hi  
I am trying to understand how this works and wondered why there are two arguments but you only send 1 in example 
 
Ron </description>
		<content:encoded><![CDATA[<p>Hi<br />
I am trying to understand how this works and wondered why there are two arguments but you only send 1 in example </p>
<p>Ron</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-871</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Tue, 23 Feb 2010 17:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-871</guid>
		<description>Does the code work with eg: example.com?a=1#chapter10 </description>
		<content:encoded><![CDATA[<p>Does the code work with eg: example.com?a=1#chapter10</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: personAtRandom</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-856</link>
		<dc:creator>personAtRandom</dc:creator>
		<pubDate>Sat, 13 Feb 2010 22:07:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-856</guid>
		<description>This is magic, as far as I&#039;m concerned, so I can&#039;t diagnose this, but the function only returns the GET variable up to (and not including) the first instance of the letter &#039;a&#039;. Truly weird! </description>
		<content:encoded><![CDATA[<p>This is magic, as far as I&#039;m concerned, so I can&#039;t diagnose this, but the function only returns the GET variable up to (and not including) the first instance of the letter &#039;a&#039;. Truly weird!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Fraser</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-823</link>
		<dc:creator>Josh Fraser</dc:creator>
		<pubDate>Mon, 11 Jan 2010 19:32:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-823</guid>
		<description>you define &#039;a&#039; twice.  while the regexp could obviously be altered to look for the last instance, it&#039;s better coding practice to to avoid ambiguous cases like that. </description>
		<content:encoded><![CDATA[<p>you define &#039;a&#039; twice.  while the regexp could obviously be altered to look for the last instance, it&#039;s better coding practice to to avoid ambiguous cases like that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vsync</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-821</link>
		<dc:creator>vsync</dc:creator>
		<pubDate>Mon, 11 Jan 2010 10:02:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-821</guid>
		<description>your code misinterpreted this query: 
?a=1&amp;b=2&amp;a=true&amp;c=7xxx 
 
&#039;a&#039; is &#039;1&#039; instead of &#039;true&#039; </description>
		<content:encoded><![CDATA[<p>your code misinterpreted this query:<br />
?a=1&amp;b=2&amp;a=true&amp;c=7xxx </p>
<p>&#039;a&#039; is &#039;1&#039; instead of &#039;true&#039;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Printer</title>
		<link>http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/comment-page-1/#comment-690</link>
		<dc:creator>James Printer</dc:creator>
		<pubDate>Mon, 07 Sep 2009 15:49:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.onlineaspect.com/?p=291#comment-690</guid>
		<description>Thanks :) </description>
		<content:encoded><![CDATA[<p>Thanks <img src='http://www.onlineaspect.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
