Search code examples
javascriptjquerycolorbox

How to prevent colorbox on body click event?


I am using colorbox which is working fine. I want to avoid it from getting closed by body click event. It should close when I click on close button. What would be the syntax for this. I am using this code.

$(".iframe").colorbox({iframe:true, innerWidth: 570, innerHeight: 300, scrolling: true});

Solution

  • use this :

     $(".iframe").colorbox({iframe:true, innerWidth: 570, innerHeight: 300, scrolling: true, overlayClose: false});