Entonces, lo que necesito es, por ejemplo, tengo un botón, cuando se hace clic en él, deseo que también active una tecla de tabulación, para que el foco se mueva al siguiente elemento con tabindex = 0
Tengo algo como esto, pero no funciona:
var btnSkipMenu = $("#btnSkipMenu"); btnSkipMenu.click(function() { var tabEvent = jQuery.Event("keydown"); tabEvent.which = 9; this.trigger(tabEvent); //so it should simulate key press tab, then focus move to next tabindex=0 });por favor avise con una muestra de código Gracias