Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nathaningram/6ef54be32c927fc71499 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/6ef54be32c927fc71499 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
jQuery(document).on( 'keypress', '.gform_wrapper', function (e) {
var code = e.keyCode || e.which;
if ( code == 13 && ! jQuery( e.target ).is( 'textarea,input[type="submit"],input[type="button"]' ) ) {
e.preventDefault();
return false;
}
} );
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment