In fact, I added comas in my first version and it's working :
<!--START JUICEBOX EMBED-->
<script src="/galerie/yorktown/jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl : '/galerie/yorktown/',
containerId : 'juicebox-container',
galleryWidth : '800',
galleryHeight : '600',
backgroundColor: '#222222'
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
Now I have a new question,
How can I call the album from another domain.
I have parlamer.net and parlamer.fr
I want to let the gallery on parlamer.fr/galerie
But I want to embed in a page on parlamer.net
I tried :
<!--START JUICEBOX EMBED-->
<script src="http://galerie.parlamer.fr/yorktown/jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl : 'http://galerie.parlamer.fr/galerie/yorktown/',
containerId : 'juicebox-container',
galleryWidth : '800',
galleryHeight : '600',
backgroundColor: '#222222'
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
But I have a message : Juicebox Error: Config XML file not found.
What's wrong ?
Thank you