Is it possible to cancel an from being tabstopped in any browser? I would like to do this without Javascript.
You could apply a JQuery handler to the element you want to target multiple elements with no tab stop.
$(document).ready(function () { $('.class').attr('tabindex', '-1'); });
Would be one way to do it....