Last active
April 1, 2022 20:50
-
-
Save dantetesta/d988cf3ab51a866ed0d4322870c6b20c 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
| <script> | |
| jQuery( document ).ready(function() { | |
| //DECLARE OS CAMPOS QUE PRECISA DESEJA IGNORAR O TAB SEQUIDO DE VIRGULA | |
| jQuery('#campo5, #campo6').attr('tabindex', '-1'); | |
| //DECLARE OS CAMPOS QUE PRECISA ORGANIZAR A SEQUENCIA DE TABS UM ABAIXO DO OUTRO | |
| jQuery('#campo1').attr('tabindex', '1'); | |
| jQuery('#campo2').attr('tabindex', '2'); | |
| jQuery('#campo3').attr('tabindex', '3'); | |
| jQuery('#campo4').attr('tabindex', '4'); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment