Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

jquery disable keypress

// turn off the enter key to stop form submitting
    jQuery(document).keypress(
        function(event){
            if (event.which == '13') {
                event.preventDefault();
            }
        }); // end disable keypress
 
PREVIOUS NEXT
Tagged: #jquery #disable #keypress
ADD COMMENT
Topic
Name
3+5 =