Tabindex is not working in ie 7
Posted
by Mayur
on Stack Overflow
See other posts from Stack Overflow
or by Mayur
Published on 2010-06-15T14:09:58Z
Indexed on
2010/06/15
14:12 UTC
Read the original article
Hit count: 211
Hi All,
I used a tabindex in my code, everything is going great its works finr in Firefox, ie8, safari but its not working properly in ie7, when i used a tab index in ie7 it come up to two input file then it get back to index one;
example:
<div tabindex=1>
<a onclick="slide_down()" style="cursor:pointer;width:160px; padding-bottom:10px;" >sample link</a>
</div>
<div tabindex=2>
<a onclick="slide_down()" style="cursor:pointer;width:160px; padding-bottom:10px;" >sample link1</a>
</div>
<div tabindex=3>
<a onclick="slide_down()" style="cursor:pointer;width:160px; padding-bottom:10px;" >sample link2</a>
</div>
Thanks
© Stack Overflow or respective owner