Okay... Im still on a big learning curve with Java / JQuery etc...
I have easyslider and jcarousel running fine on the page... but I also want to add in jquery.ticker but im getting conflicts with the code - but when I remove:
<script src="js/jquery.ticker.js" type="text/javascript"></script>
<script src="js/site.js" type="text/javascript"></script>
It works fine with easyslider and jcarousel - but of course no jquery.ticker
Any pointers on what I need to do to get all three JQuery code to work together within the page would be really helpful.
<script type="text/javascript" src="js/jquery-1.6.2.js"></script>
<script type="text/javascript" src="js/easySlider1.5.js"></script>
<script src="scripts/swfobject_modified.js" type="text/javascript">
</script><script src="js/jcarousellite_1.0.1c4.js" type="text/javascript"></script>
<script type="text/javascript" src="js/1.6.2/jquery.min.js"></script>
<script src="js/jquery.ticker.js" type="text/javascript"></script>
<script src="js/site.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$(".newsticker-jcarousellite").jCarouselLite({
horizontal: true,
hoverPause:true,
visible: 10,
auto:500,
speed:1000
});
});
</script>
<script type="text/javascript" charset="utf-8">
// <![CDATA[
$(document).ready(function(){
$("#slider").easySlider({
controlsBefore: '<p id="controls">',
controlsAfter: '</p>',
auto: true,
continuous: true
});
});
// ]]>
</script>
Thanks
Miguel