Last active
June 23, 2017 15:53
-
-
Save rodrigobravo/975ea338a6d1c16737a0f82257e5b2fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("#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