Skip to content

Add a reset tab order function for forms #10

@nnance

Description

@nnance

updateTabOrder: function() {
var tabindex = 1;
this.$('form').find('input,select').each(function() {
if (this.type != "hidden") {
var $input = $(this);
$input.attr("tabindex", tabindex);
tabindex++;
}
});
},

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions