Pergunta

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.

Foi útil?

Solução

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

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

Outras dicas

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

You can try this one also :-

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top