I work entering data online to a form that I would like to change the tabbing order but have had no luck using Greasemonkey and Scriptish. I am able to remove tabindexes of -1 to make fields accessible in Scriptish. However, whenever I try to set the tabindex
on a field, the field ends up being skipped when tabbing.
This works to remove tabindex:
var eth = document.getElementById('Ethnicities-111');
if (eth)
eth.removeAttribute('tabindex');
This makes a different text area field inaccessible:
var tb = document.getElementById('EybComments');
if (tb)
tb.setAttribute('tabindex' '1');