Topic: AutoPlay & RandomizeImages not working when Embedding [SOLVED]
I embedded into my webpage, but I can not get the Autoplay or randomizeImages to work.
If I run the index.html form the directory on my website where all the juicebox files are, that gallery works as it should.
This is the embedd code I'm using on my webpage
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl : 'gallery/',
containerId: "juicebox-container",
galleryWidth: "800",
galleryHeight: "600",
autoPlayOnLoad: "TRUE",
useThumbDots: "FALSE",
showThumbsButton: "FALSE",
randomizeImages: "TRUE",
enableLooping: "TRUE",
enableAutoPlay: "TRUE",
showAutoPlayButton: "TRUE",
goNextOnAutoPlay: "TRUE",
backgroundColor: "rgba(34,34,34,1)"
});
</script>
<div id="juicebox-container" style="margin: 0 auto;"></div>
<!--END JUICEBOX EMBED-->