Skip to content

Instantly share code, notes, and snippets.

@rodrigobravo
Last active June 23, 2017 15:53
Show Gist options
  • Save rodrigobravo/975ea338a6d1c16737a0f82257e5b2fa to your computer and use it in GitHub Desktop.
Save rodrigobravo/975ea338a6d1c16737a0f82257e5b2fa to your computer and use it in GitHub Desktop.
$("#botaoMesa").on("click",function()
{
console.log("teste");
});
$('input[name=mesa]').keydown(function(e)
{
if(e.which == 9) $('#botaoMesa').click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment