user2609694
user2609694

Reputation: 49

Accessing tabbed content from another page

I have small problem. I have a menu with three menu items and pages

Home - Products - products and it also contains tabbed content 1tab is "company info", 2nd tab is "contact us" Contact us - this is not a page but link to 2nd tab on the products page

I want know is there any possible way, when "contact us" is clicked directly go to 2nd tab on the products page

Upvotes: 0

Views: 45

Answers (1)

Tomas Ramirez Sarduy
Tomas Ramirez Sarduy

Reputation: 17471

I hope you are talking about some kind of jQuery tabs, in that case you can do something like

HTML link

<a href="index.php#contact-us">Contact Us</a>

Jquery code:

// get the hash from the location
var tab = window.location.hash;
// get the <a> element with the href that matches the location hash,
// and fire a click event on it
$('div.tabs ul.tabNavigation a[href=' + tab + ']').click();

Note: The tab id should match the hash

Related:

Upvotes: 1

Related Questions