css - Specific tab open on load -


i'm using these tabs on page keep information needed on 1 page. question is, when link page, possible open specific tab on load? should for? hope can me out here.

thank you.

<ul class="tabs"> <li>     <input type="radio" name="tabs" id="tab_how" checked />      <label for="tab_how">something here</label>       <div id="tab-content" class="tab-content">        </div> </li>  <li>     <input type="radio" name="tabs" id="tab_support" />      <label for="tab_support">something else here</label>       <div id="tab-content" class="tab-content">        </div> </li> </ul> 

add name or id ul anchor:

<ul id="target_tab" class="tabs"> 

for link:

<a href="thispage.html#target_tab">link</a> 

hope looking for.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -