|
Is there a way to set the default css menu drop tab on a page load?
Return to Recent Questions
Q:
Is there a way to set the default tab showing on a page load?
When using the DHTML-Tabs, the second tab seems to be selected tab when displaying css menu drop in a page.
A:
You should use the following parameter:
var bselectedItem = 3;
Where 3 is the number of your css menu drop item from the var bmenuItems
parameter.
var bmenuItems =
[
["Mac Tab 1", "content1"],
["Mac Tab 2", "content2"],
["Mac Tab 3", "content3"],
["Mac Tab 4", "content4"], // selected tab
];
The ID of the item starts with 0.
You can move this parameter from your data file to html page directly (before you call data file) and set correct value for it on each page.
Try that.
Return to Recent Questions
Related:
|