prettyPhoto Open inline content onLoad

5.8k Views Asked by At

I got an inline with id="inline" content with simple text on an image.

Is there a possibility to open this inline on page load?

Any help, will be appreciated.

2

There are 2 best solutions below

0
On
$(document).ready(function(){ $.prettyPhoto.open('your-file-name.html?iframe=true&width=auto&height=80%; rel="prettyPhoto[iframes]"' ); });
2
On

It's pretty simple.

$(document).ready(function() {
    $.prettyPhoto.open("#inline");
});