HI all,
Trying to embed two galleries into one HTML page and its not working.......
Here's the code I am using,
<!--1st Gallery Embed-->
<script type="text/javascript">
new juicebox({
containerId:'jb-netting1',
baseURL: 'netting1/',
galleryWidth:'800',
galleryHeight:'500',
backgroundColor: 'rgba(255,0,0,.7)'
});
</script>
<div id="jb-netting1"></div>
<!-- END 1st Gallery Embed -->
<h2>Gallery 2</h2>
<!--2nd Gallery Embed-->
<script type="text/javascript">
new juicebox({
containerId:'jb-netting2',
baseURL: 'netting2/',
galleryWidth:'800',
galleryHeight:'500',
backgroundColor: 'rgba(0,255,0,.7)'
});
</script>
<div id="jb-netting2"></div>
<!-- END 2nd Gallery Embed -->
I know the problem is to do with the container ID so a little guidfance would be greatly appreciated.
Happy Xmas folks!