As long as the images are on the same ssl as the page, they cannot be the problem. However, this (from Step 1 on the demo page):
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
Will be a problem. And of course, without the script, the images will not be displayed.
Google hosts its ajax lib scripts on a ssl as well as regular http, so you can try:
Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
If that doesn't solve the problem you can download a copy of jQuery and host it yourself from your ssl.
As a side note though, jQuery 1.3.2 is way outdated, so along with changing to https, I would suggest changing the number to 1.6.4, so you would have:
Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
And, again as I say, if you're still getting a security warning, download the file and host it yourself on your ssl.
The browser cache may need to be cleared and/or the page refreshed to see changes.
If you want more help, please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks