The code work fine and it just change the content of some tabs when you click in them. The html code is this:
<ul class="tabs">
<li><a href="#tab1">Tab 1</a></li> <li><a href="#tab2">Tab 2</a></li> </ul> </div> <div class="block_content tab_content" id="tab1"> <h3>This is the first tab</h3> <p>content tab 1</p>
</div> <div class="block_content tab_content" id="tab2"> <h3>This is the second tab</h3> <p>content tab 2</p> </div>
When I reload the page it always show first tab content. How could I choose dinamically which tab to show in the first reload ?
Thanks and best regards.