Im using featherlight.js Inside the lightbox content I put a simple jQuery fonction. A button which show a div when I click on it.
$(document).ready(function () {
$(".button-popup").click(function () {
$("#reveal").show("slow");
});
});
But it doesn't work: JSFiddle.