Frage

I am using lightbox by Warren Krewenki

https://github.com/krewenki/jquery-lightbox

Is there a way to open an image on page load? Like if there is some jQuery trigger which I can call on page load which will emulate like user clicking on image and then it will open lightbox?

Or if this is not possible then any other plugin that will allow me to open and HTML page in lightbox? I remember I saw one here but forgot the link.

War es hilfreich?

Lösung

Trigger a click on one of the links to which lightbox is attached:

$(function () {
    $('a.lightbox').lightbox();
    $('a.lightbox:first').trigger('click');
});

Andere Tipps

$(document).ready(function () {
 $('#myLightbox').show();
});

You can try this one also :-

http://lokeshdhakar.com/projects/lightbox/

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top