Add tab Index and background
jQuery(document).ready(function() {
jQuery("#Body").addClass("bgnd");
jQuery(function(){
var tabindex = 1;
jQuery('input,select,.RELIndexer,textarea').each(function() {
if (this.type != "hidden") {
var jQueryinput = jQuery(this);
jQueryinput.attr("tabindex", tabindex);
tabindex++;
}
});
});
});
jQuery("#Body").addClass("bgnd");
jQuery(function(){
var tabindex = 1;
jQuery('input,select,.RELIndexer,textarea').each(function() {
if (this.type != "hidden") {
var jQueryinput = jQuery(this);
jQueryinput.attr("tabindex", tabindex);
tabindex++;
}
});
});
});
Comments
Post a Comment