javascript - Slideshow Shows in Preview Site But Doesn't Show When Uploaded -
i have jquery slideshow (camera.js) on webpage. when view slideshow in preview viewer, shows , works perfectly. however, when upload hosting site, shows slideshow, there no pictures, can see here.
if let me know i'm doing wrong, appreciated.
thanks in advance!
you've got errors keeping things working properly.
1) javascript: line 3 of geturl.js should have () after getaddress. (this main cause.
2) you've got 404s camera.js image assets.
3) index line 96 "getaddress not defined". result of 1).
update:
it looks if initializing plugin before container exists. should either put code in footer or in .ready event so:
$(document).ready(function(){ $('#camera_wrap_3').camera({ pagination: false, thumbnails: false, imagepath:'images/camera/' }); }); the ready function waits until page loaded before executing code.
Comments
Post a Comment