Вопрос

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.

Это было полезно?

Решение

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

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

Другие советы

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

You can try this one also :-

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top