After adding two sliders to my web page, I noticed that only one of them is working when I link all the necessary JavaScript files into the HTML page. It seems that the new JavaScript files for the second slider are causing the first slider to not show up at all.
Here are the JavaScript links for the first (old) slider:
<!-- SlidesJS Required: Link to jQuery -->
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<!-- End SlidesJS Required -->
<!-- SlidesJS Required: Link to jquery.slides.js -->
<script src="js/jquery.slides.min.js"></script>
And here are the JavaScript links for the second (new) slider:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="pngFix/jquery.pngFix.js"></script>
<script type="text/javascript" src="mopSlider/mopSlider-2.4.js"></script>
<script src="js/salesSlider.js"></script>
I suspect that there might be a clash between the two sets of files causing this issue. Can anyone shed some light on what might be happening here?
It's worth noting that in order for the first slider to appear, all the new JavaScript links have to be removed.
If you require more code for further assistance, feel free to ask and I'll be happy to provide it.