Jquery Isn't Functioning On Different Webhost
I just finished a website & went to upload it to the client's host, which is the same host that I use for my personal site. When I uploaded the site to his domain as an add on
Solution 1:
Is not a jQuery issue or whatsoever, is because all your scripts references return a 404 "page not found"
Your references start from the root/
file
<scriptsrc="/nivo-slider/jquery.nivo.slider.js"type="text/javascript"></script><scriptsrc="/nivo-slider/jquery.nivo.slider.pack.js"type="text/javascript"></script><!--/ Fancybox Script--><scripttype="text/javascript"src="/fancybox/jquery.fancybox-1.3.4.pack.js"></script><scripttype="text/javascript"src="/fancybox/jquery.easing-1.4.pack.js"></script>
...etc
.... but they should be relative to directory nd/
like
<scriptsrc="nd/nivo-slider/jquery.nivo.slider.js"type="text/javascript"></script>
... etc
... so is a path issue ;)
Solution 2:
nivoslider javascript does not exist on your clients site:
http://greencertifier.com/nivo-slider/jquery.nivo.slider.js
but it exists on your site:
Post a Comment for "Jquery Isn't Functioning On Different Webhost"