<?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 to the Next Input Field with jQuery</title>
	<atom:link href="http://jqueryminute.com/set-focus-to-the-next-input-field-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://jqueryminute.com/set-focus-to-the-next-input-field-with-jquery/</link>
	<description>...a jQuery Minute™ later and you&#039;re done!</description>
	<lastBuildDate>Fri, 09 Apr 2010 22:13:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: Roman</title>
		<link>http://jqueryminute.com/set-focus-to-the-next-input-field-with-jquery/comment-page-1/#comment-631</link>
		<dc:creator>Roman</dc:creator>
		<pubDate>Tue, 26 Jan 2010 21:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://jqueryminute.com/blog/set-focus-to-the-next-input-field-with-jquery/#comment-631</guid>
		<description>This is great, but how do you make it to go backwards?  I&#039;m using this on a form where scores are entered, to go to the next field, but if I make a mistake, I&#039;d like to make it if I click the left arrow key it&#039;ll jump to the previous field and select the text in it...

Thanks,
-Roman</description>
		<content:encoded><![CDATA[<p>This is great, but how do you make it to go backwards?  I&#8217;m using this on a form where scores are entered, to go to the next field, but if I make a mistake, I&#8217;d like to make it if I click the left arrow key it&#8217;ll jump to the previous field and select the text in it&#8230;</p>
<p>Thanks,<br />
-Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adam</title>
		<link>http://jqueryminute.com/set-focus-to-the-next-input-field-with-jquery/comment-page-1/#comment-234</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Fri, 23 Oct 2009 09:56:08 +0000</pubDate>
		<guid isPermaLink="false">http://jqueryminute.com/blog/set-focus-to-the-next-input-field-with-jquery/#comment-234</guid>
		<description>thanks!
didn&#039;t know you could add a jquery function on the fly like this - very nice!
Thought I&#039;d post the amendment I made for my use (makes it repeat from the beginning):
&lt;code&gt;
// added :not(:disabled) 
// to selector
// ...
else {
	                if (fields.length &gt; 1) {
	                    fields.eq(0).focus();
	                }
	            }
this.attr(&quot;disabled&quot;, &quot;disabled);
return false;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>thanks!<br />
didn&#8217;t know you could add a jquery function on the fly like this &#8211; very nice!<br />
Thought I&#8217;d post the amendment I made for my use (makes it repeat from the beginning):<br />
<code><br />
// added :not(:disabled)<br />
// to selector<br />
// ...<br />
else {<br />
	                if (fields.length &gt; 1) {<br />
	                    fields.eq(0).focus();<br />
	                }<br />
	            }<br />
this.attr("disabled", "disabled);<br />
return false;<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jdsharp</title>
		<link>http://jqueryminute.com/set-focus-to-the-next-input-field-with-jquery/comment-page-1/#comment-224</link>
		<dc:creator>jdsharp</dc:creator>
		<pubDate>Mon, 19 Oct 2009 04:52:36 +0000</pubDate>
		<guid isPermaLink="false">http://jqueryminute.com/blog/set-focus-to-the-next-input-field-with-jquery/#comment-224</guid>
		<description>@Nodashi  Great point! The find selector could actually be rewritten as:
&lt;pre lang=&quot;javascript&quot; line=&quot;3&quot;&gt;
.find(&#039;:input&#039;).not(&#039;[type=hidden]&#039;)
&lt;/pre&gt;

Cheers,
- Jonathan</description>
		<content:encoded><![CDATA[<p>@Nodashi  Great point! The find selector could actually be rewritten as:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">':input'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">not</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'[type=hidden]'</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>

<p>Cheers,<br />
- Jonathan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nodashi</title>
		<link>http://jqueryminute.com/set-focus-to-the-next-input-field-with-jquery/comment-page-1/#comment-216</link>
		<dc:creator>Nodashi</dc:creator>
		<pubDate>Fri, 16 Oct 2009 09:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://jqueryminute.com/blog/set-focus-to-the-next-input-field-with-jquery/#comment-216</guid>
		<description>You should chage the find &quot;pattern&quot; to &quot;button,input[type!=&quot;hidden&quot;],textarea,select&quot;

input with attribute type and value hidden are commonly use ;)</description>
		<content:encoded><![CDATA[<p>You should chage the find &#8220;pattern&#8221; to &#8220;button,input[type!="hidden"],textarea,select&#8221;</p>
<p>input with attribute type and value hidden are commonly use ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: notod</title>
		<link>http://jqueryminute.com/set-focus-to-the-next-input-field-with-jquery/comment-page-1/#comment-203</link>
		<dc:creator>notod</dc:creator>
		<pubDate>Tue, 06 Oct 2009 15:12:23 +0000</pubDate>
		<guid isPermaLink="false">http://jqueryminute.com/blog/set-focus-to-the-next-input-field-with-jquery/#comment-203</guid>
		<description>I spent all my day to find a way to do this inside jquery documentation !

Finally, google gave me your solution wich is quite nice !</description>
		<content:encoded><![CDATA[<p>I spent all my day to find a way to do this inside jquery documentation !</p>
<p>Finally, google gave me your solution wich is quite nice !</p>
]]></content:encoded>
	</item>
</channel>
</rss>

