I have a slider that I need to change tabindex to -1. I know that this is a huge no, but the site that was developed is already useless for everyone who uses a screen device, etc.
The problem is that I have a link that when clicked opens a color window. Inside this color window there is a form divided into slides on the sliders. The form elements that I have installed are equal to -1, but one of the form questions has a jQuery UI slider element that allows a person to set their height.
The element itself is an anchor tag with a class: "ui-slider-handle", but it is created after the page loads, so I cannot just execute simple jQuery. I tried using the .live function, but I need an event type. I do not want this to be based on an event other than when it was created. If you do not think that Keydown will work as the main goal, this is to stop users from clicking on the tab and moving the slider that contains the form without using the navigation bar of the next and previous slider.
I understand that this is confusing why someone installed the site this way, but that was before I got into the picture. Any help would be greatly appreciated! Thanks in advance!
source
share