All,
I have the following code. I need to add a link at the top of my code clicking on which shows content of tab2. I pretty much tried all the suggestions but don't know where am i going wrong. I cannot post the whole code but here is my script and tabs code.Within code i am using a div class extlink and calling jquery. Please help me.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
// Wait until the DOM has loaded before querying the document
$(document).ready(function(){
enter code here
$('ul.tabs').each(function(){
// For each set of tabs, we want to keep track of
// which tab is active and it's associated content
var $active, $content, $links = $(this).find('a');
// Use the first link as the initial active tab
$active = $links.first().addClass('active');
$content = $($active.attr('href'));
// Hide the remaining content
$links.not(':first').each(function () {
$($(this).attr('href')).hide();
});
// Bind the click event handler
$(this).on('click', 'a', function(e){
// Make the old tab inactive.
$active.removeClass('active');
$content.hide();
// Update the variables with the new link and content
$active = $(this);
$content = $($(this).attr('href'));
// Make the tab active.
$active.addClass('active');
$content.show();
// Prevent the anchor's default click action
e.preventDefault();
});
});
});
$('.extlink').click(function(){
var tabid = $(this).attr('data-tabid'); // this gets the id of the element you want to trigger
$('#'+tabid).click(); /// this acts as if you clicked on that tab element
});
</script>
</head><body><div id="product_suggestions">
<div id="product_desc_container" class="left">
<div class="extlink" data-tabid="tab2">click me!</div>
<br>
<br>
<br>
<div id="product_desc_tabs">
<ul class="tabs">
<li id="selected"><a href="#product_desc_content">test1</a></li>
<li><a href="#tab2">test2</a></li>
<li><a href="#tab3">test3</a></li>
<li><a href="#tab4">test4</a></li>
<li><a href="#tab5">test5</a></li>
</ul>
</div>
<div id="product_desc_content">
<p>This is a test tab1.</p>
</div>
<div id='tab2'>
<p>This is a test tab2.</p>
</div>
<div id='tab3'>
<h3>Section 3</h3>
<p>This is a test tab3.</p>
</div>
</div>
</div>
</body></html>