Carefully read from the demo page, near the bottom, under the heading Customization
Number 1 there answers why a particular tab is the default selected. If you wish a different tab as the default, set its index here:
Code:
<script type="text/javascript">
//SYNTAX: ddtabmenu.definemenu("tab_menu_id", integer OR "auto")
ddtabmenu.definemenu("ddtabs1", 0) //initialize Tab Menu with ID "ddtabs1" and select 1st tab by default
</script>
Then read the final heading on the demo page Inside ddtabmenu.js
That describes how to control the behavior of the default tab. If you don't wish for it to be selected onmouse out, set the snap2original to false:
Code:
disabletablinks: false, //Disable hyperlinks in 1st level tabs with sub contents (true or false)?
snap2original: [false, 300], //Should tab revert back to default selected when mouse moves out of menu? ([true/false, delay_millisec]
Bookmarks