Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active April 19, 2024 14:25
Show Gist options
  • Save fayqLs/15c8b8a9c1568aecf6b285a094fd01f2 to your computer and use it in GitHub Desktop.
Save fayqLs/15c8b8a9c1568aecf6b285a094fd01f2 to your computer and use it in GitHub Desktop.
DEFINIR O CLIQUE OU FOCO NO BOTÃO AO TECLAR O ENTER
<?php
// DEFINA UM ID PARA O BOTÃO
$btn_pesquisar->id = 'btn_pesquisar';
// ROTINA JAVASCRIPT PARA DÁ O FOCO OU CLICAR NO BOTÃO AO PRESSIONAR O ENTER
TScript::create('
$(document).keyup(function(e) {
if(e.which == 13) $("#btn_pesquisar").click();
});
');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment