Why has this jQuery Scroller stopped scrolling on my site?
The section on the right-hand side of this website has stopped scrolling all of a sudden.
http://www.nwfencingco.com/
It is ASP.NET MVC 3, hosted on Windows Server 2008 R2 Standard. It was working and looking at the server update history, the following updates were installed on 30th June.
http://support.microsoft.com/kb/2545698
http://support.microsoft.com/kb/2552343 http://support.microsoft.com/kb/2547666None of these appear to be related to IIS, but as it was working then suddenly stopped the other day seems strange.
I have checked the site in:
Chrome 12.0.742.112
Firefox 5.0 IE9 Safari 5.0.5..all have the issue, so it doesn't appear to be browser-related.
I get these two errors i开发者_如何学Cn the console now when I view the site in Chrome:
<!DOCTYPE html>
http://www.nwfencingco.com/:1Uncaught SyntaxError: Unexpected token <
and:
<script type="text/javascript">
try
{
$('.vertical_scroller').SetScroller({
$ is not defined
Does anyone have any ideas what may be causing this please? I'm doing some other work on the site now, so will be changing it slightly, but don't want to lose days in this issue, so hopefully someone else has seen something similar.
Thanks.
How many times do you intend to include jQuery in the <head>
section:
<script src="/Scripts/jquery-1.5.1.js" type="text/javascript"></script>
<script src="/Scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
Seems a bit wasteful to me.
精彩评论