Published
- 1 min read
jquery disable enter key submit
The solution for this is noted below
jquery disable enter key submit
Solution
$(document).on('keyup keypress', 'input', function (e) {
if (e.which == 13) {
e.preventDefault()
return false
}
})
Try other methods by searching on the site. That is if this doesn’t work