Reputation: 49
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
Reputation: 17471
I hope you are talking about some kind of jQuery tabs, in that case you can do something like
<a href="index.php#contact-us">Contact Us</a>
// 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
Upvotes: 1