Tagged Questions

3
votes
2answers
414 views

Controling tabbing focus within popup javascript widget context

I'm working on a lightbox style javascript plugin that pops up an image with next+previous buttons and a close button. I want to make it so that tabbing will only jump between the three presented ...
3
votes
6answers
3k views

Javascript: How do I skip items when tabbing without using tabindex?

Is there a good way, in a javascript onfocus() handler, to trampoline the focus to the next item in the tab order, without having to manually enter the ID of the item that should be next? I built an ...