<?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: Making your forms auto-focus</title>
	<atom:link href="http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/feed/" rel="self" type="application/rss+xml" />
	<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/</link>
	<description>Ever wanted to build a browsergame?</description>
	<lastBuildDate>Wed, 10 Mar 2010 20:26:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: free online movie</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-533</link>
		<dc:creator>free online movie</dc:creator>
		<pubDate>Mon, 02 Nov 2009 02:10:41 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-533</guid>
		<description>thanks for sharing the info, have bookmarked it and will revisit</description>
		<content:encoded><![CDATA[<p>thanks for sharing the info, have bookmarked it and will revisit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Caleb</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-447</link>
		<dc:creator>Caleb</dc:creator>
		<pubDate>Mon, 24 Aug 2009 02:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-447</guid>
		<description>You can also use the tab index property to control where the cursor goes if the person presses tab. It could be annoying if your sign-up and login were on the same page and the cursor jumps from one to the other. &lt;br&gt;&lt;br&gt;&lt;input type=&quot;text&quot; name=&quot;username&quot; tabindex=&quot;1&quot;&gt;&lt;br&gt;&lt;br&gt;1 is highest priority then 2 and so on. 0 will only be cycled through after the others have been.&lt;br&gt;&lt;br&gt;Note that this doesn&#039;t replace document.getElementByld() ... but it helps for the after ward.</description>
		<content:encoded><![CDATA[<p>You can also use the tab index property to control where the cursor goes if the person presses tab. It could be annoying if your sign-up and login were on the same page and the cursor jumps from one to the other. </p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;username&#8221; tabindex=&#8221;1&#8243;&gt;</p>
<p>1 is highest priority then 2 and so on. 0 will only be cycled through after the others have been.</p>
<p>Note that this doesn&#39;t replace document.getElementByld() &#8230; but it helps for the after ward.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrLollige</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-350</link>
		<dc:creator>MrLollige</dc:creator>
		<pubDate>Thu, 12 Mar 2009 12:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-350</guid>
		<description>Ah, wonderful details! Thanks for adding this to the tutorial Luke!</description>
		<content:encoded><![CDATA[<p>Ah, wonderful details! Thanks for adding this to the tutorial Luke!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barbara J Najera</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-299</link>
		<dc:creator>Barbara J Najera</dc:creator>
		<pubDate>Wed, 11 Feb 2009 04:00:17 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-299</guid>
		<description>god bless your blog my friend :)</description>
		<content:encoded><![CDATA[<p>god bless your blog my friend <img src='http://buildingbrowsergames.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon B Walker</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-292</link>
		<dc:creator>Leon B Walker</dc:creator>
		<pubDate>Tue, 10 Feb 2009 05:16:32 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-292</guid>
		<description>great article!, grats for u site :)</description>
		<content:encoded><![CDATA[<p>great article!, grats for u site <img src='http://buildingbrowsergames.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-281</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Wed, 04 Feb 2009 22:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-281</guid>
		<description>If you look at the register and login templates, you&#039;ll notice that they *&lt;br&gt;both* have the code already implemented on them.&lt;br&gt;If you are having trouble understanding how document.getElementById() works,&lt;br&gt;you may want to learn a little bit more javascript before attempting to add&lt;br&gt;it to your projects.</description>
		<content:encoded><![CDATA[<p>If you look at the register and login templates, you&#39;ll notice that they *<br />both* have the code already implemented on them.<br />If you are having trouble understanding how document.getElementById() works,<br />you may want to learn a little bit more javascript before attempting to add<br />it to your projects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sonicatu</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-280</link>
		<dc:creator>sonicatu</dc:creator>
		<pubDate>Wed, 04 Feb 2009 21:54:49 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-280</guid>
		<description>It`s kinda confusing. You should put an example on the register.php or login.php</description>
		<content:encoded><![CDATA[<p>It`s kinda confusing. You should put an example on the register.php or login.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chaos</title>
		<link>http://buildingbrowsergames.com/2008/05/20/making-your-forms-auto-focus/comment-page-1/#comment-107</link>
		<dc:creator>Chaos</dc:creator>
		<pubDate>Mon, 15 Sep 2008 12:26:49 +0000</pubDate>
		<guid isPermaLink="false">http://buildingbrowsergames.com/?p=37#comment-107</guid>
		<description>I&#039;ve written a &lt;a href=&quot;http://lostsouls.org/grimoire_form_autofocus&quot; rel=&quot;nofollow&quot;&gt;form autofocus script&lt;/a&gt; that does this in a way that handles some of the problems that come up with the topic, and generally automatically figures out what field to focus on.  Thought you might want to know. :)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve written a <a href="http://lostsouls.org/grimoire_form_autofocus" rel="nofollow">form autofocus script</a> that does this in a way that handles some of the problems that come up with the topic, and generally automatically figures out what field to focus on.  Thought you might want to know. <img src='http://buildingbrowsergames.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
