iu9-ca-web-chat/assets/js/reg.js

17 lines
715 B
JavaScript
Raw Normal View History

2024-08-05 11:07:03 +00:00
document.addEventListener('DOMContentLoaded', function() {
const form = document.querySelector('form');
form.addEventListener('keydown', function(event) {
if (event.key === 'Enter') {
const activeElement = document.activeElement;
if (activeElement.tagName === 'INPUT' && activeElement.type !== 'submit') {
event.preventDefault();
const formElements = Array.from(form.elements);
const currentIndex = formElements.indexOf(activeElement);
if (currentIndex !== -1 && formElements[currentIndex + 1]) {
formElements[currentIndex + 1].focus();
}
}
}
});
});