There could also be other problems. But I see that, in the page's source code, there's another version of jQuery added after the scripts for the slider -
Slider scripts and its css file:
Code:
<link rel="stylesheet" type="text/css" href="/js/parallax/parallaxslider.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="/js/parallax/jquery.velocity.min.js"></script>
<script type="text/javascript" src="/js/parallax/jquery.touchSwipe.min.js"></script>
<script src="/js/parallax/parallaxslider.js" type="text/javascript">
/***********************************************
* Parallax Slider- (c) Dynamic Drive (www.dynamicdrive.com)
* Please keep this notice intact
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
<script type="text/javascript">
var firstparallaxslider=new parallaxSlider({
wrapperid: 'myparallaxslider', //ID of DIV on page to house slider
displaymode: {type:'manual', pause:3000, cycles:2, stoponclick:true, pauseonmouseover:true},
delaybtwdesc: 100, // delay in milliseconds between the revealing of each description layer inside a slide
navbuttons: ['/js/parallax/arrowleft.png', '/js/parallax/arrowright.png', '/js/parallax/up.png', '/js/parallax/down.png'], // path to nav images
activeslideclass: 'selectedslide', // CSS class that gets added to currently shown DIV slide
orientation: 'h', //Valid values: "h" or "v"
persist: true, //remember last viewed slide and recall within same session?
slideduration: 1000 //transition duration (milliseconds)
})
</script>
Then just after that:
Code:
<!--[if IE]><link rel="shortcut icon" href="/img/favicon.ico"><![endif]-->
<script type="text/javascript" src="/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="/js/modernizr.js"></script>
<script type="text/javascript" src="/js/responsee.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
It's the highlighted that overwrites the initial jQuery script used by the slider. This apparently kills the velocity script, as velocity is no longer defined.
First thing to try would be to get rid of the highlighted line. Hopefully the other code that uses jQuery 1.8.3 can get by fine with version 1.11.0. If so - all done! If not, let me know but leave it up with just the 1.11.0 jQuery so I can have a look at it that way. Oh, and what does the 1.8.3 version do? Looks like it enables something called responsee.js, right? As long as both that and the slider work after removing the reference to:
Code:
<script type="text/javascript" src="/js/jquery-1.8.3.min.js"></script>
Then we're all set. If not, we will have to do some detective work, and I will have to know just what responsee.js does when it's working as expected.
Edit: Looks like it should work. Did here in limited testing - let me know. Don't forget to refresh the page and/or clear the cache to see results.
Bookmarks