This is where the browser expects the image to be:
Code:
http://www.charmnecklaces.co.uk/newsite/standard/images/loading.gif
It is not there. Make sure the path and filename are spelled correctly, including upper and lower case. If that's not where the image is, but it is on the server, make the path correct. Oh, I found it, change (in thumbnailviewer.js):
Code:
defineLoading: '<img src="images/loading.gif" /> Loading...', //Define HTML for "loading" div
to:
Code:
defineLoading: '<img src="http://www.charmnecklaces.co.uk/newsite/images/loading.gif" /> Loading...', //Define HTML for "loading" div
If you want to use the relative path (instead of the absolute one I'm giving you) it must be relative to the page that is using it, not to the script file.
Bookmarks