Tuesday 20 March 2012

Lightbox for ajax loaded content Drupal

Normal way of implementing lightbox does not work out for the onclick event of ajax loaded content. For that we should do the below thing
$(document).ajaxComplete(function() {
   Lightbox.initList();
});
Reference: http://drupal.org/node/282089

No comments:

Post a Comment