What I'm trying to do grab the tabIndex from this line:
<input name="110" title="" id="test" style="position: absolute; top: 155px; left: 687px; tabindex: 3; z-order: 99;" type="checkbox" CHECKED="checked" runat="server" value="on"/>
And have it set as an HTML attribute via javascript.
How can I achieve this?
Ideally what I'm looking to see is this:
<input name="110" title="" id="test" tabindex= "3" style="position: absolute; top: 155px; left: 687px; ; z-order: 99;" type="checkbox" CHECKED="checked" runat="server" value="on"/>
$("SELECTOR").attr("tabindex") = "desired index"tabindex = 3andz-order