djvk87
05-18-2010, 06:25 AM
1) Script Title: Tab Content Script (v 2.2)
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/tabcontent.htm
3) Describe problem: I have been using the Tab Content Script for a while now and it has helped serve content on my businesses webpage www.woodenboatshop.com.au nicely. However I am currently working on a new page for cataloging engine parts and I am using another script (Drill Down Menu (v1.6) http://www.dynamicdrive.com/dynamicindex1/drilldownmenu.htm) as the index for this catalog). I wish to make the links in the Drill Down Menu integrate with the Tab Content Scripts dynamic pages. The problem is Tab Content works like this
<ul id="countrytabs" class="shadetabs">
<li><a href="#" rel="country1" class="selected">Tab 1</a></li>
<li><a href="#" rel="country2">Tab 2</a></li>
<li><a href="#" rel="country3">Tab 3</a></li>
<li><a href="#" rel="country4">Tab 4</a></li>
<li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
</ul>
as you can see all links are within 1 parent <ul>
but the Drill Down Menu I have made is seperated into multiple <ul> fields as they are nested. I want to be able to make each <ul> have the same class so they can access the tabs, but when I try to do this it breaks. (example below)
<div id="drillmenu1" class="drillmenu">
<ul id="ysptabs">
<li><a href="#" rel="yspindex">Information</a></li>
<li><a href="#">By Engine</a>
<ul>
<li><a href="#">PMX 6</a>
<ul id="ysptabs">
<li><a href="#" rel="pmx-6-filters">Filters</a></li>
<li><a href="#" rel="pmx-6-drive-belts">Drive Belts</a></li>
<li><a href="#" rel="pmx-6-anodes">Anodes</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
Basically it seems as though Tab Content won't let me have more than one parent <ul> with the same class, but I desperately need this to work.
Any help would be much appreciated, thanks
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/tabcontent.htm
3) Describe problem: I have been using the Tab Content Script for a while now and it has helped serve content on my businesses webpage www.woodenboatshop.com.au nicely. However I am currently working on a new page for cataloging engine parts and I am using another script (Drill Down Menu (v1.6) http://www.dynamicdrive.com/dynamicindex1/drilldownmenu.htm) as the index for this catalog). I wish to make the links in the Drill Down Menu integrate with the Tab Content Scripts dynamic pages. The problem is Tab Content works like this
<ul id="countrytabs" class="shadetabs">
<li><a href="#" rel="country1" class="selected">Tab 1</a></li>
<li><a href="#" rel="country2">Tab 2</a></li>
<li><a href="#" rel="country3">Tab 3</a></li>
<li><a href="#" rel="country4">Tab 4</a></li>
<li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
</ul>
as you can see all links are within 1 parent <ul>
but the Drill Down Menu I have made is seperated into multiple <ul> fields as they are nested. I want to be able to make each <ul> have the same class so they can access the tabs, but when I try to do this it breaks. (example below)
<div id="drillmenu1" class="drillmenu">
<ul id="ysptabs">
<li><a href="#" rel="yspindex">Information</a></li>
<li><a href="#">By Engine</a>
<ul>
<li><a href="#">PMX 6</a>
<ul id="ysptabs">
<li><a href="#" rel="pmx-6-filters">Filters</a></li>
<li><a href="#" rel="pmx-6-drive-belts">Drive Belts</a></li>
<li><a href="#" rel="pmx-6-anodes">Anodes</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
Basically it seems as though Tab Content won't let me have more than one parent <ul> with the same class, but I desperately need this to work.
Any help would be much appreciated, thanks