I need a way to switch my tab navigation with buttons AFTER THE PAGE IS RENDERED.
Return to Recent Questions
Q:
I need a way to change tabs with buttons AFTER THE PAGE IS RENDERED. This
means bselecteditem is useless to me at this point.
I want to have a button called NEXT on TAB 1, and when you press that
button, it switches you to TAB 2. Likewise on TAB 2 I want to have a button
called NEXT that when pressed will switch you to TAB 3.
I don't want to have to post back to the server to make this work, I want a
way of Javascript to change the tab indexes.
How can I do this?
A:
Try to use the following function:
LTb0(menuN,itemN);
menuN - menu ID, starts with 0
itemN - item ID, starts with 0
Return to Recent Questions
|