jQuery Disable Enter on Text Field

( function( $ ){ $( function(){ $( document ).on( 'keyup keypress', 'input, textarea', function( e ){ var charCode = ( e.which ) ? e.which : e.keyCode; if( charCode == 13 ){ e.preventDefault(); return false; } } ); } ); })( jQuery );
Prevent form submission when hit ENTER on input/textarea field

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.