[accordions initialTab="1"]
[accordion title="SOME_TITLE_1"]
<a href="http://localhost:80/projects/" ></a>
<a href="http://localhost:80/clients/" ></a>
<a href="http://localhost:80/portfolio/" ></a>
[/accordion]
[accordion title="SOME_TITLE_2"]
<a href="http://localhost:80/projects/" ></a>
<a href="http://localhost:80/clients/" ></a>
<a href="http://localhost:80/portfolio/" ></a>
[/accordion]
[accordion title="SOME_TITLE_3"]
<a href="http://localhost:80/projects/" ></a>
<a href="http://localhost:80/clients/" ></a>
<a href="http://localhost:80/portfolio/" ></a>
[/accordion]
[/accordions]jQuery(".accordion").each(function(){
var $initialIndex = jQuery(this).attr('data-initialIndex');
if($initialIndex==undefined){
$initialIndex = 0;
}
jQuery(this).tabs("div.pane", {tabs: '.tab', effect: 'slide',initialIndex: $initialIndex});
});It looks like you're new here. If you want to get involved, click one of these buttons!