Warning: Please include a link to the DD script in question in your post, in this case, http://www.dynamicdrive.com/dynamici...tabcontent.htm. See this thread for the proper posting format when asking a question.
To your question, to change the default selected tab when the page initially loads, just give the menu item in question a CSS class of "selected", for example:
Code:
<div id="flowertabs" class="modernbricksmenu2">
<ul>
<li><a href="#" rel="tcontent1">Tab 1</a></li>
<li><a href="#" rel="tcontent2" rev="flowernote,flowernote2">Tab 2</a></li>
<li><a href="#" rel="tcontent3" class="selected">Tab 3</a></li>
<li><a href="#" rel="tcontent4" rev="flowernote3">Tab 4</a></li>
<li><a href="http://www.dynamicdrive.com/dynamicindex17/tabcontent.htm">Tab Content</a></li>
</ul>
</div>
Bookmarks