The page is referencing an insecure script:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
Chrome is blocking it. There are at least 3 choices:
- Add the s as shown:
Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
- Or you can allow the browser to select the protocol (this only works on a live page):
Code:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
- Or you can download and host the jQuery script on the secure server and point to it there.
I like #2 best, except if you need to be able to run the page locally. In which case either 1 or 3 will be fine.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks