|
Subject:
|
Tab Index
|
|
Posted By:
|
Anupamab
|
Post Date:
|
1/8/2007 9:39:04 AM
|
Hi there,
Anybody help me how to pu tabindex in a <img>tag. I gave a image when the user press tab while filling out the form it should not jump to tip box.
Thanks A
|
|
Reply By:
|
vinod_yadav1919
|
Reply Date:
|
1/9/2007 1:25:01 AM
|
Hii Anu!! as per following documents http://www.w3.org/TR/html4/interact/forms.html#adef-tabindex
tabindex attribute supports with --> A, AREA, BUTTON, INPUT, OBJECT, SELECT, and TEXTAREA.
since you want to add tabindex , its better to put <a><img></img></a> like structure ,you can change the style of visitied link for <a> with css hope this will help you
Cheers :)
vinod
|
|
Reply By:
|
surendran
|
Reply Date:
|
1/11/2007 1:20:31 AM
|
hai, Tabindex will work image also, see a sample example here
<body> <input type="text" tabindex="1"> <img src="http://newsimg.bbc.co.uk/shared/img/logo042.gif" tabindex="2"> <input type="text" tabindex="3"> </body>
surendran (Anything is Possible) http://ssuren.spaces.msn.com
|