Topic: backButtonUrl with parameters do not seems to work

<!--START JUICEBOX EMBED-->
        <script src="jbcore/juicebox.js"></script>
        <script>
            new juicebox({
                containerId : 'juicebox-container',
                galleryWidth: '100%',
                galleryHeight: '100%',
                backgroundColor: 'rgba(51,51,51,1)',
                backButtonUrl: '../index.html?scrollableindex=1'
            });
        </script>
        <div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

The link [../index.html?scrollableindex=1]  become  [../index.html] in the builded page.

Re: backButtonUrl with parameters do not seems to work

I am sorry;
I find a nice solution with window.location.search and it's run :

        <!--START JUICEBOX EMBED.-->
        <script src="jbcore/juicebox.js"></script>
        <script>
            new juicebox({
                containerId : 'juicebox-container',
                galleryWidth: '100%',
                galleryHeight: '100%',
                backgroundColor: 'rgba(51,51,51,1)',
                backButtonUrl: '../index.html'+ window.location.search
            });
        </script>
        <div id="juicebox-container"></div>
        <!--END JUICEBOX EMBED.-->

Re: backButtonUrl with parameters do not seems to work

I am glad you have found a solution to your problem.
Thank you for posting back to let me know.