javascript - Prevent the click event while press the enter key when button in focus in Jquery -


please advise me, created form , press tab key focus button. if press enter key instead of mouse click event, jquery events triggers both keypress , click event. how can prevent click event.

please try 1 :

$("#buttonid").keypress(function(e){    if(e.keycode === 13){        e.preventdefault();    } }); 

Popular posts from this blog

node.js - How do I prevent MongoDB replica set from querying the primary? -

c# - Randomly pick a specific int from a 2D Array -

php - Angularjs http.delete is not working after deploying project on server -