Sashidhar Kokku's blog

Browse by Tags

All Tags » Javascript » How-To (RSS)
How To : Disable Enter key in web forms
Include the following code in the <head> tag, or in the common.js file in your website(hoping that you call it in the master page or the relevant form). function disableEnterKey() { if ( window .event.keyCode == 13) window .event.keyCode = 0; }...