Hi,
After being able to create jquery tabs with your help, I need to open each tab from external links.
My tab list ha the id '#tabs-demo'.
My tab content has the tabs with the ids '#tab1','#tab2'.. '#tabn'
my link looks like; http://.....mypage.aspx#tab2. But this does not open the correct tab. In internet I saw the following javascript code but it did not help.
Do you have any idea?
Thank you...
MAT
</script>
$(document).ready(function() {
if($('#tabs-demo') && document.location.hash){
$.scrollTo("#tabs-demo");
}
$('#tabs-demo ul').localScroll({
target:"#tabs-demo",
duration:0,
hash:true
});
});
</script>