You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the tab order should be given by the tabindex attribute, if present;
so the selectable array should be ordered.
something like this:
function selectNextTabbableOrFocusable(selector){
var selectables = $(selector);
selectables.sort(function(a, b){
var a1=$(a).attr('tabindex')||0;
var b1=$(b).attr('tabindex')||0;
return a1-b1;
} );
..... etcetera
RIc
The text was updated successfully, but these errors were encountered:
the tab order should be given by the tabindex attribute, if present;
so the selectable array should be ordered.
something like this:
RIc
The text was updated successfully, but these errors were encountered: