Files
simutu/assets/js/enter2.js
2025-10-09 12:30:11 +07:00

11 lines
394 B
JavaScript

$('body').on('keydown', 'input, select, textarea', function(e) {
if (e.which === 13) {
var self = $(this), form = self.parents('form:eq(0)'), focusable, next;
focusable = form.find('input, select, textarea, button, a').filter(':visible:enabled');
next = focusable.eq(focusable.index(this)+1);
if (next.length) {
next.focus();
}
return false;
}
});