Hello,
I just downloaded the latest version of Canvas and tested the code in the documentation for "Initializing Tabs using Custom Javascript".
This does not work in version 4.01. It worked perfectly in the last version.
I've uploaded the files to my server and tested it without making any changes to the files and the tabs do not work properly.
Have you tested and verified that this works?
Do you have a fix? Can you provide an update?
thank you for your help,
RMA
<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>
<script>
jQuery(document).ready( function($){
$( "#tabs" ).tabs({
collapsible: true,
event: 'mouseover',
show: {
effect: "fade",
duration: 400
}
});
});
</script>