Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create a form using fancybox2. When needed the fancybox2 form will be displayed and can only be closed using the top right X button, escape key or with a submit,cancel buttons I will add inside this content. How can I achieve this and how can I make all the stuff in the background disabled so no one can click it ? it seems that it doesn't work for me in the next example:

jQuery(document).ready(function(){
    $(".fancybox").fancybox({

        width:600,
        height: 300,
        closeBtn    : true,
        closeClick  : true,
        openEffect  : 'elastic',
        closeEffect : 'elastic',
        scrolling   : 'no',
        autoSize    : false,
        fitToView   :   true

    });
});

        <div class='fancybox' style="display: block;width:600px;height:300px;border:1px solid black;position: absolute;left:300px;top:300px;">TEST DIV</div>
share|improve this question
stackoverflow.com/a/8404587/1055987 – JFK Aug 16 '12 at 18:14

2 Answers

up vote 1 down vote accepted
$(".fancybox").fancybox({
    width: 600,
    height: 300,
    closeBtn    : true,
    closeClick  : false, // prevents closing when clicking the background 
    openEffect  : 'elastic',
    closeEffect : 'elastic',
    scrolling   : 'no',
    autoSize    : false,
    fitToView   : true
});

change closeClickto false

share|improve this answer
closeClick:false only prevents closing when clicking INSIDE fancybox. Clicking outside fancybox (on the overlay mask/background) still closes fancybox. I answered that question already back in December stackoverflow.com/a/8404587/1055987 – JFK Aug 16 '12 at 22:02

Set the modal option to true in facnybox script code i.e.

$(".fancybox").fancybox({
    //existing stuff
    modal : true

});
share|improve this answer
Beware that when using the modal option, the [X] button will not show up and escape won't close the box either. The only way to close the box will be through a custom close button triggering the $.fancybox.close() method. – JFK Aug 16 '12 at 18:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.