jquery-steps
jquery-steps copied to clipboard
disable enter key press from paginating to the next step
Hi,
If I press Enter key right after clicking the 'Next' button it keeps paginating to the next steps. I would like to disable this Enter keypress pagination but only for this particular behavior.
Is there a way to do this?
prevent to go to next step by pressing enter key
$(document).ready(function() {
$(window).keydown(function(event){
if(event.keyCode == 13) {
event.preventDefault();
return false;
}
});
});