Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
Tabindex attribute
posted

Hello everyone,

I'm ofter using UltraWebGrid and see that when it's used, tabindex attribute is appears on many DOM elements on the page. Please tell me how can I turn off this function?

Usually I do following:

jQuery(function(){
   setTimeout(function(){
     jQuery("[tabindex]").each(function(){
       jQuery(this).removeAttr("tabindex");
     });
    }, 1000);
})

But this is dirty solution...