Search code examples
javascriptjqueryprettyphoto

jQuery prettyPhoto: How to pass additional GET parameters?


<a href="page.html?iframe=true&amp;width=700&amp;height=100%&amp;myVar=text" rel="prettyPhoto">Click Me</a>

In js script:

$('a[rel*=prettyPhoto]').prettyPhoto({
        keyboard_shortcuts: false,
        social_tools: false,
        deeplinking: false
    });

And in page.html I cannot access myVar. Help?

  • Found similar question here, but it's not answered either.

Solution

  • SOLUTION FOUND: The url parameters you want to pass should be before "iframe" variable. Eg.:

    page.html?myVar=text&iframe=true&width=700&height=100%