The plugins site is currently in development.
We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.
Autotabindex
This is similar to the great Autotab plug-in available on this site but instead of asinging in jquery where to go next it follows the tabindex assigned to the input elements. It also its stripped down to only do autotab and not form validation.
Once the auto tab has jumped over to the next element it will also select its contents if they have already been entered (as this is what users would normally do).
It also takes into account hidden input elements by ignoring them and checking upto 5 increments in the tabindex to find one that is visible and focusing on that.
Use as follows...
$(document).ready(function()
{
$('#element_1').autotabindex();
$('#element_2').autotabindex();
$('#element_3').autotabindex();
$('#element_4').autotabindex();
});I can't take all the credit as I have used the autotab by Wilfred Nas, found hereas a base and then modified it to search for the tabindex.
