Responsive-Lightbox icon indicating copy to clipboard operation
Responsive-Lightbox copied to clipboard

Dealing with elements loaded with ajax

Open MoacirFuhr opened this issue 9 years ago • 0 comments

I was having some trouble using the plugin with links that were loaded by ajax. After a while I found the solution, just wanted to share if anyone has the same problem:

Normal request:

$ ('.lightbox').lightbox();

Requests for items loaded with ajax:

$ (Document) .ajaxComplete (function (event, request, settings) {
      $ ('.lightbox').lightbox ();
});

MoacirFuhr avatar Feb 08 '16 14:02 MoacirFuhr