Skip to content

Instantly share code, notes, and snippets.

@dantetesta
Last active April 1, 2022 20:50
Show Gist options
  • Select an option

  • Save dantetesta/d988cf3ab51a866ed0d4322870c6b20c to your computer and use it in GitHub Desktop.

Select an option

Save dantetesta/d988cf3ab51a866ed0d4322870c6b20c to your computer and use it in GitHub Desktop.
<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