I\'m using the Fancybox plugin for my modal windows. It seems like no matter what options I use I can\'t prevent the fancybox modal window from closing when the user clicks
Set the closeClick parameter to false inside your function:
closeClick
$(".video").click(function() { $.fancybox({ width: 640, height: 385, helpers: { overlay: { closeClick: false } } }); return false; });