To remove the closing functionality of the jQuery Lightbox popup when clicked outside the popup I changed the functions as follows
From
$("#overlay").click(function(){ end(); }).hide();
$("#lightbox").click(function(){ end();}).hide();
To
$("#overlay").click(function(){ });
$("#lightbox").click(function(){ });
No comments:
Post a Comment