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

php - How should I create my API for mobile applications (Needs Authentication) -

5 Reasons to Blog Anonymously (and 5 Reasons Not To)

Google AdWords and AdSense - A Dynamic Small Business Marketing Duo