<?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: Set focus on first field with jQuery</title>
	<atom:link href="http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/</link>
	<description>ruby rails javascript jquery prototype osx</description>
	<lastBuildDate>Sat, 27 Feb 2010 06:36:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Set focus on first field with Prototype &#171; Kolodvor</title>
		<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/comment-page-1/#comment-6618</link>
		<dc:creator>Set focus on first field with Prototype &#171; Kolodvor</dc:creator>
		<pubDate>Sat, 02 Jan 2010 14:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/#comment-6618</guid>
		<description>[...] you are using jQuery see this [...]</description>
		<content:encoded><![CDATA[<p>[...] you are using jQuery see this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Peno</title>
		<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/comment-page-1/#comment-6304</link>
		<dc:creator>Kevin Peno</dc:creator>
		<pubDate>Wed, 23 Dec 2009 22:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/#comment-6304</guid>
		<description>Correction, I meant to remove the :text part of my query. Should be:

$(&quot;:input:visible:first&quot;).focus();</description>
		<content:encoded><![CDATA[<p>Correction, I meant to remove the :text part of my query. Should be:</p>
<p>$(&#8220;:input:visible:first&#8221;).focus();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Peno</title>
		<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/comment-page-1/#comment-6303</link>
		<dc:creator>Kevin Peno</dc:creator>
		<pubDate>Wed, 23 Dec 2009 22:16:21 +0000</pubDate>
		<guid isPermaLink="false">http://kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/#comment-6303</guid>
		<description>&quot;how about $(”input:text:visible:first”).focus();?&quot;

Actually, that should be: $(&quot;:input:text:visible:first&quot;).focus();

This will grab focus to the first form field, regardles sof type (select, input, textarea).</description>
		<content:encoded><![CDATA[<p>&#8220;how about $(”input:text:visible:first”).focus();?&#8221;</p>
<p>Actually, that should be: $(&#8220;:input:text:visible:first&#8221;).focus();</p>
<p>This will grab focus to the first form field, regardles sof type (select, input, textarea).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jancis</title>
		<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/comment-page-1/#comment-3939</link>
		<dc:creator>Jancis</dc:creator>
		<pubDate>Fri, 04 Sep 2009 08:41:41 +0000</pubDate>
		<guid isPermaLink="false">http://kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/#comment-3939</guid>
		<description>how about $(”input:text:visible:first”).focus();?
I am not sure how filter work, but if they are taken from left to right, then visible should be filtered out first.</description>
		<content:encoded><![CDATA[<p>how about $(”input:text:visible:first”).focus();?<br />
I am not sure how filter work, but if they are taken from left to right, then visible should be filtered out first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: verrier</title>
		<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/comment-page-1/#comment-1975</link>
		<dc:creator>verrier</dc:creator>
		<pubDate>Fri, 29 May 2009 09:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/#comment-1975</guid>
		<description>one extra bit add a visible
 $(&quot;input:text:first:visible&quot;).focus();</description>
		<content:encoded><![CDATA[<p>one extra bit add a visible<br />
 $(&#8220;input:text:first:visible&#8221;).focus();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Cadenas</title>
		<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/comment-page-1/#comment-180</link>
		<dc:creator>Daniel Cadenas</dc:creator>
		<pubDate>Wed, 15 Oct 2008 14:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/#comment-180</guid>
		<description>If you want to have more control about this there&#039;s another alternative with this plugin:

http://github.com/dcadenas/auto_focusable_forms/tree/master

-After you install it you will have automatically focused your first inputs without adding a single line of code to your app.

-Another nice thing is that you can disable this behaviour by just passing &quot;:autofocus =&gt; false&quot; to your forms_for.

-Another advantage is that there&#039;s no dependency with Prototype or JQuery.

Oh sorry, there are some dependencies, you&#039;ll need Rails and a browser that can understand javascript ;)</description>
		<content:encoded><![CDATA[<p>If you want to have more control about this there&#8217;s another alternative with this plugin:</p>
<p><a href="http://github.com/dcadenas/auto_focusable_forms/tree/master" rel="nofollow">http://github.com/dcadenas/auto_focusable_forms/tree/master</a></p>
<p>-After you install it you will have automatically focused your first inputs without adding a single line of code to your app.</p>
<p>-Another nice thing is that you can disable this behaviour by just passing &#8220;:autofocus =&gt; false&#8221; to your forms_for.</p>
<p>-Another advantage is that there&#8217;s no dependency with Prototype or JQuery.</p>
<p>Oh sorry, there are some dependencies, you&#8217;ll need Rails and a browser that can understand javascript <img src='http://www.kolodvor.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webmster Mexico</title>
		<link>http://www.kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/comment-page-1/#comment-48</link>
		<dc:creator>Webmster Mexico</dc:creator>
		<pubDate>Wed, 23 Apr 2008 04:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://kolodvor.net/2008/01/17/set-focus-on-first-field-with-jquery/#comment-48</guid>
		<description>Nice code, jquery is cool. Thanks for the example.</description>
		<content:encoded><![CDATA[<p>Nice code, jquery is cool. Thanks for the example.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
