Tab View doesn't work

wetsuitshop

New Member
I want to create a simple build menu with a tabbed view.After i changed something yesterday night it doesn't work any more.The switch between the tabs is broken, the content of all tabs will be shown at the first tabSnippet:\[code\] <div id="builder"> <div id="wrapper"> <div id="tabContainer"> <div class="tabs"> <ul> <li id="tabHeader_1">Page 1</li> <li id="tabHeader_2">Page 2</li> <li id="tabHeader_3">Page 3</li> </ul> </div> <div class="tabscontent"> <div class="tabpage" id="tabpage_1"> <h2>Page 1</h2> <p>Pellentesque habitant morbi tristique senectus...</p> </div> <div class="tabpage" id="tabpage_2"> <h2>Page 2</h2> <p>Pellentesque habitant morbi tristique senectus...</p> </div> <div class="tabpage" id="tabpage_3"> <h2>Page 3</h2> <p>Pellentesque habitant morbi tristique senectus...</p> </div> </div> </div></div>\[/code\]Sample CodeSourceMy Test Site
 
Back
Top