Matus
08-15-2011, 04:48 PM
1) Script Title: Ultimate Fade-in slideshow (v2.4)
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm
3) Describe problem: Everything is working fine in all browsers except Internet Explorer 8.
Here is my url : http://www.sceranka.wz.cz
jscheuer1
08-15-2011, 05:54 PM
From the IE error console:
SCRIPT1023: Expected hexadecimal digit
fadeslideshow.js, line 11 character 72
It's talking about this line:
controls: [['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\x.png',7,7], ['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\restore.png',10,11], ['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
See those paths? They're local paths. The \ slashes are seen as escapes. \x means a hex code should follow.
Anyways, upload those images to the server if you haven't already. Put them in the same folder as your page and restore the default line to the script:
controls: [['x.png',7,7], ['restore.png',10,11], ['loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
Matus
08-15-2011, 06:25 PM
Thank you very much! It is working now.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.