I'm trying to use the treeview 1.4 with jquery.tabs.pack which comes
with jquery.1.1.3.1.pack
There appears to be some sort of compatability issue between the 2
versions of code and I can't find a download where the tabs and the
treeview are listed in the same place.
Below you can see all the file calls which I'm making on my page;
<link rel="stylesheet" href="jquery.treeview.css">
<link rel="stylesheet" href="screen.css">
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.cookie.js" type="text/javascript"></script>
<script src="jquery.treeview.js" type="text/javascript"></script>
<script src="jquery-1.1.3.1.pack.js" type="text/javascript"></script>
<script src="jquery.history_remote.pack.js" type="text/javascript"></
script>
<script src="jquery.tabs.pack.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#tree").treeview({
collapsed: true,
animated: "medium",
control:"#sidetreecontrol",
persist: "location"
});
})
$('#container-9').tabs({ remote: true });
$('<a href="#">Disable third tab<\/a><\/
p>').prependTo('#fragment-28').find('a').click(function() {
$(this).parents('div').eq(1).disableTab(3);
return false;
});
$('
<a href="#">Activate third tab<\/a><\/
p>').prependTo('#fragment-28').find('a').click(function() {
$(this).parents('div').eq(1).triggerTab(3);
return false;
});
$('
<a href="#">Enable third tab<\/a><\/
p>').prependTo('#fragment-28').find('a').click(function() {
$(this).parents('div').eq(1).enableTab(3);
return false;
});
</script>
<link rel="stylesheet" href="jquery.tabs.css" type="text/css"
media="print, projection, screen">
<!-- Additional IE/Win specific style sheet (Conditional
Comments) -->
<!--[if lte IE 7]>
<link rel="stylesheet" href="jquery.tabs-ie.css" type="text/
css" media="projection, screen">
<![endif]-->
Anyone know how I can get these 2 scripts to function together?