<?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: Setting your tabindex on your html forms automatically with jQuery</title> <atom:link href="http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/feed/" rel="self" type="application/rss+xml" /><link>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/</link> <description>Self-proclaimed greatness is a hard thing to prove.</description> <lastBuildDate>Tue, 15 May 2012 21:39:02 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: amiydany</title><link>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/#comment-1781</link> <dc:creator>amiydany</dc:creator> <pubDate>Tue, 24 Jan 2012 11:47:49 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=100#comment-1781</guid> <description>I have set the tab index and it works fine.
However when i try to select shift+tab to move backwards, it causes a problem. This happens with respect to the frames I have in that page. When I tend to navigate between each frame backwards, I get this problem.
Can anyone clarify me on this as to what actually happens?</description> <content:encoded><![CDATA[<p>I have set the tab index and it works fine.</p><p>However when i try to select shift+tab to move backwards, it causes a problem. This happens with respect to the frames I have in that page. When I tend to navigate between each frame backwards, I get this problem.</p><p>Can anyone clarify me on this as to what actually happens?</p> ]]></content:encoded> </item> <item><title>By: Fabio Souza</title><link>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/#comment-1758</link> <dc:creator>Fabio Souza</dc:creator> <pubDate>Tue, 20 Dec 2011 20:56:41 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=100#comment-1758</guid> <description>I using for reorder the all tabindexs after create the dinamic elements witch jquery.
function reassignTabOrders(){
var tabindex = 1;
$(&#039;input,select,button&#039;).each(function () {
if (this.type != &#039;hidden&#039;) {
var $input = $(this);
$input.attr(&quot;tabindex&quot;, tabindex);
tabindex++;
}
});
}
reassignTabOrders();
Thanks brother Alon and post author.</description> <content:encoded><![CDATA[<p>I using for reorder the all tabindexs after create the dinamic elements witch jquery.</p><p>function reassignTabOrders(){<br
/> var tabindex = 1;<br
/> $(&#8216;input,select,button&#8217;).each(function () {<br
/> if (this.type != &#8216;hidden&#8217;) {<br
/> var $input = $(this);<br
/> $input.attr(&#8220;tabindex&#8221;, tabindex);<br
/> tabindex++;<br
/> }<br
/> });<br
/> }<br
/> reassignTabOrders();</p><p>Thanks brother Alon and post author.</p> ]]></content:encoded> </item> <item><title>By: Smedrick</title><link>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/#comment-1742</link> <dc:creator>Smedrick</dc:creator> <pubDate>Mon, 14 Nov 2011 17:29:36 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=100#comment-1742</guid> <description>Dave,
So you read the disclaimer in the article and then just put in your useless 2 cents anyway.  Not all forms flow the same, usability aside.  Besides, do you often comment on a 2 year old article with a 2 year old link.  Nicely done.  This was meant to demonstrate the technique, not recommend it.</description> <content:encoded><![CDATA[<p>Dave,</p><p>So you read the disclaimer in the article and then just put in your useless 2 cents anyway.  Not all forms flow the same, usability aside.  Besides, do you often comment on a 2 year old article with a 2 year old link.  Nicely done.  This was meant to demonstrate the technique, not recommend it.</p> ]]></content:encoded> </item> <item><title>By: Dave</title><link>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/#comment-1737</link> <dc:creator>Dave</dc:creator> <pubDate>Mon, 14 Nov 2011 04:59:18 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=100#comment-1737</guid> <description>Neil is correct this script is useless as the browser already handels this.
For more info why this is a bad idea see http://www.lessfussdesign.com/blog/2009/04/skiplinks-tabindex/</description> <content:encoded><![CDATA[<p>Neil is correct this script is useless as the browser already handels this.</p><p>For more info why this is a bad idea see <a
href="http://www.lessfussdesign.com/blog/2009/04/skiplinks-tabindex/" rel="nofollow">http://www.lessfussdesign.com/blog/2009/04/skiplinks-tabindex/</a></p> ]]></content:encoded> </item> <item><title>By: Neil Osman</title><link>http://greatwebguy.com/programming/dom/setting-your-tabindex-on-your-html-forms-automatically-with-jquery/#comment-1689</link> <dc:creator>Neil Osman</dc:creator> <pubDate>Fri, 09 Sep 2011 12:57:29 +0000</pubDate> <guid
isPermaLink="false">http://greatwebguy.com/?p=100#comment-1689</guid> <description>This is totally advisable! You don&#039;t have to set the tabindex as it&#039;s done automatically by the browser in the code&#039;s logical order. You may set the tabindex order if your markup / design is such that demands so. Setting the tabindex on page load/ ready, is&#039;t absolutely redundant and in the examples above, it will probably mess the page readability all together since these doesn&#039;t include anchors!!! which are also focusable elements!</description> <content:encoded><![CDATA[<p>This is totally advisable! You don&#8217;t have to set the tabindex as it&#8217;s done automatically by the browser in the code&#8217;s logical order. You may set the tabindex order if your markup / design is such that demands so. Setting the tabindex on page load/ ready, is&#8217;t absolutely redundant and in the examples above, it will probably mess the page readability all together since these doesn&#8217;t include anchors!!! which are also focusable elements!</p> ]]></content:encoded> </item> </channel> </rss>
