/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$("#form").keypress(function(e) { if (e.which == 13) { return false; } });
$("#form").keypress(function(e) { if (e.which == 13) { return false; } });