Hi guys. Im not as good in coding but got several custom JQuery features running. I am building up a new website and have the following problem.
I use the Serie3 Slider for header pics, a CSS nav which runs on Jquery and at last I added a fancy box gallery. I had to delete a part of the script already from the nav to make both nav and s3slider work together but now with the gallery I get either the gallery only or the slider work.
The problem is this line:
- <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://www.paradisepuertorico.com/js/s3Slider.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('#slider').s3Slider({
- timeOut: 9000
- });
- });
- </script>
- <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
- <link rel="stylesheet" href="http://www.paradisepuertorico.com/gal/source/jquery.fancybox.css" type="text/css" media="screen" />
- <script type="text/javascript" src="http://www.paradisepuertorico.com/gal/source/jquery.fancybox.pack.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $(".fancybox").fancybox();
- });
- </script>
The problem seems to be this line:
- <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
When i take it out the slider works again but the gallery of course doesn't anymore. What could I do to get both running? Its probably something really obvious, but Im learning here.
Thank you very much for your help.