Hello,
This is Absolutely Possible. However we will need to use the .customjs Functionality for this. Follow the Steps below:
- Add the .customjs Class to the .tabs Element. Also make sure that the .tabs Element has a Unique HTML ID. Example:
<div class="tabs customjs clearfix" id="tabs">
<ul class="tab-nav clearfix">
<li><a href="#tab-1">Tab 1</a></li>
<li><a href="#tab-2">Tab 2</a></li>
<li><a href="#tab-3">Tab 3</a></li>
</ul>
<div class="tab-container">
<div class="tab-content clearfix" id="tab-1">
This is Tab 1 Content
</div>
<div class="tab-content clearfix" id="tab-2">
This is Tab 2 Content
</div>
<div class="tab-content clearfix" id="tab-3">
This is Tab 3 Content
</div>
</div>
</div>
- Now Initialize the Tabs by adding the following JS Code at the bottom of the Page just after the js/functions.js JS File Linking:
<script>
jQuery(document).ready( function($){
$( "#tabs" ).tabs({
show: {
effect: "fade",
duration: 400
}
});
});
</script>
Now, you can simply add the Tab ID at the end of the URL: http://your-website.com/page.html#tab-2 .
This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.