I am new to jquery and am trying to get multiple plugins to function on one page. Right now I am using an animated div slider that works on its own, and an animated link within page that works on its own. I can disable one and the other will work. I have already tried the $.noConflict(); but it just breaks both. Here is my code.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.localscroll.js" type="text/javascript"></script>
<script src="js/jquery.scrollTo.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" media="screen" href="css/coda-slider.css">
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/jquery-ui-1.8.20.custom.min.js"></script>
<script src="js/jquery.coda-slider-3.0.js"></script>
<script>
$(function() {
$('#slider-id').codaSlider({
dynamicTabsAlign: "left",
dynamicArrows: true,
autoSlide: true,
slideEaseDuration: 1000,
autoSlideInterval:8000,
dynamicArrowsGraphical:true
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#navcontact').localScroll({duration:800});
});
</script>
I have tried to use many of the other questions but cannot seem to get them to work.
Please help