jquery live tabIndex
        Posted  
        
            by VictorS
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by VictorS
        
        
        
        Published on 2010-03-20T15:54:49Z
        Indexed on 
            2010/03/20
            16:01 UTC
        
        
        Read the original article
        Hit count: 447
        
I have a jQuery statement that's working fine. How would I re-write it in .live?
 $(document).ready(function()
 {
    $(':input:enabled:visible, a:enabled:visible, span.ValidatorClass').each
    (function(i, e) { $(e).attr('tabindex', i) });
  });
The reason I need this is that I am doing .show and .hide sometimes and need to reset tab order when that happens for the elements that appear.
© Stack Overflow or respective owner