Topic: Config XML file not found - using configUrl
Both of the code samples below return file not found, any reason for this?:-
<script type="text/javascript">
new juicebox({
configUrl: "http://devmedia.steve-snell.me.uk/DataJB/Italy",
containerId: "juicebox-container",
galleryWidth: "940px",
galleryHeight: "730px",
backgroundColor: "rgba(34,34,34,0)"
});
</script>
<script type="text/javascript">
new juicebox({
configUrl: "http://devmedia.steve-snell.me.uk/DataJB/Italy.xml",
containerId: "juicebox-container",
galleryWidth: "940px",
galleryHeight: "730px",
backgroundColor: "rgba(34,34,34,0)"
});
</script>