jquery-steps icon indicating copy to clipboard operation
jquery-steps copied to clipboard

disable enter key press from paginating to the next step

Open millykat opened this issue 7 years ago • 1 comments

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?

millykat avatar Jul 20 '18 13:07 millykat

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;
                }
           });
});

shimulsql avatar Oct 29 '21 09:10 shimulsql