Multiple scripts Jquery / javascript
Hi everyone,
I hope someone can help me. I have a problem using multiple Jquery script on one page.
I am trying to make a div with a scrollbar with . This seems to work: http://www.linkingpixels.nl/tabs/tabs2
But on this page I also use a Jquery script to move panel up. I think these scripts are now conflicting because when the tabs work, the scrollbar doens't work: http://www.linkingpixels.nl/tabs
Can anybody help me with this problem?
For the scrollbar I am using JScrollPane and for the tabs I am using the following code:
Code:
<script type="text/javascript">
$(document).ready(function() {
// the currently loaded section
var curLoaded = 'text';
// show content
$('#contentContainer').animate({
height: 560
},1000, function(){
// fade in the content
$('#' + curLoaded).show();
});
});
</script>
Thanks in advance for the help.
Mike