Responsive-Lightbox
Responsive-Lightbox copied to clipboard
Dealing with elements loaded with ajax
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 ();
});