jquery tabIndex fix
- by Victor
On my pages(ASP.NET 3.5) where all input controls have tab order set whenever next input control is not enabled or hidden it goes to the address bar and then to next available control. To fix this behavior, i.e. make it land to the next available control w/o going to address bar I am trying to use jQuery:
$(':text,textarea,select').blur(function()
{
$(this).next(':text, textarea, select').filter(':enabled:visible').focus();
});
But it still goes to the adress bar in some cases. What do I need to correct here?