I have installed the Nivo Slider (http://nivo.dev7studios.com/) that uses jQuery on my site which is a Magento ecommerce site.
My site is http://bikeshop.gostorego.com/
Any ideas why on the homepage you can see where the slider goes, but the loading icon is only present not showing the slides?
Thanks
jQuery isn't being loaded on the page.
This is how you're attempting to load it:
<script src=’https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js’ type="text/javascript"></script>
Firebug shows that this URL is what's actually being requested:
So, those unusual quotes are the problem; you need normal single or double quotes:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript"></script>