views:

28

answers:

1

can i dynamically set the tab-index of a control in javascript?? is there any attribute like tab-index??

CONTEXT : i am making a particular section in a web form visible or invisible depending on some condition where i want to set the tab-index manually when that particular section is visible......

Thanks Kishore

+2  A: 
document.getElementById("link3").tabIndex = 6;
hunter
+1 for your avatar
MooGoo