Web design and coding samples, free tools, tips and more..
Untitled Document

Posts Tagged ‘html’

PostHeaderIcon How to disable enter key on html form submit

Here’s a usefull javascript to disable enter key on html form submit. It directs the user to use mouse click.

 

<script type=”text/javascript”>

function stopRKey(evt) {
  var evt = (evt) ? evt : ((event) ? event : null);
  var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
  if ((evt.keyCode == 13) && (node.type==”text”))  {return false;}
}

document.onkeypress = stopRKey;

</script>

  • Share/Bookmark
Categories
open all | close all