forum

Home / DeveloperSection / Forums / How can I make link of a tab using JavaScript?

How can I make link of a tab using JavaScript?

Anonymous User 2719 19-Aug-2013
Hi!

I have a sample page with four tabs (tabs.html). Tabs are displayed as follows:

<ul class="tabs">
    <li><a href="javascript:tabSwitch('tab1', 'content for first tab');" id="tab1" class="active"> first tab'</a></li>
    <li><a href="javascript:tabSwitch('tab2', 'content for second tab');" id="tab2"> second tab </a></li>
    <li><a href="javascript:tabSwitch('tab3', 'content for third tab');" id="tab3"> third tab'</a></li>
  <li><a href="javascript:tabSwitch('tab4', 'content for fourth tab');" id="tab3"> fourth tab</a></li>
</ul>

The JavaScript used to switch tabs is:

function tabSwitch(active, number, tab_prefix,
content_prefix) {
    for (var i = 1; i < number+1; i++) { 
        document.getElementById(content_prefix+i).style.display = 'none'; 
        document.getElementById(tab_prefix+i).className = ''; 
    } 
    document.getElementById(content_prefix+active).style.display = 'block'; 
    document.getElementById(tab_prefix+active).className = 'selected';     
}

Now, by default, when I link to tabs.html, the first tab is set to active. Is it possible to create a link from another site that links to tabs.html and forces the second or third tab to be active?

Ok

Updated on 19-Aug-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By