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

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

php - HTTP_REFERER woes: How can I allow access to a specific page, only when a visitor has visited another specific page beforehand? -