Skip to content

Instantly share code, notes, and snippets.

@devfabriciobr
Created December 8, 2025 22:24
Show Gist options
  • Select an option

  • Save devfabriciobr/afbfc0227a9ff89492804bf67b17ed86 to your computer and use it in GitHub Desktop.

Select an option

Save devfabriciobr/afbfc0227a9ff89492804bf67b17ed86 to your computer and use it in GitHub Desktop.
DESABILITAR FOCO "ENTER" NO BOTÃO DO FORMULÁRIO
<?php
TScript::create("$(document).ready( () => $('form input, form select').on('keypress', (evt) => { if( evt.keyCode === 13 ) { return false; }}) );");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment