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'm using the jQuery UI modal dialog. I want the dialog to be fixed positioned in the middle of the screen and on browser resize for the position to auto-update. It turns out this is not available by default.

So what I have done is:

dialog = $('<div id="dialog-content" class="ui-dialog-container"></div>').html('<div class="loading">Loading...</div>').dialog({
    autoOpen: true,
    position: ['center', 130],
    open: function() {

        // Fixed Positioning
        $('.ui-dialog').css({position:"fixed"});

        // Reposition on Window Resize
        $(window).resize(function() {
            console.log('resizing);
            $('.ui-dialog').dialog("option", "position", "center");
        });


    }
});

Notice the:

            console.log('resizing);

The problem here is that while this work,s when the dialog is closed the resizing event is still firing. How can I make this a binding that is associated with the dialog so that when the dialog is destroy the binding is also destroyed?

Thanks

share|improve this question
Do your users seriously resize windows that often? :o – ThiefMaster Mar 30 '12 at 22:07

2 Answers

up vote 1 down vote accepted

You have to unbind the resize event when the dialog closes:

.dialog({
    ...,
    open: function() {
        ...
        $(window).bind('resize.dlg', function() {
            ...
        });
    }
    close: function() {
        $(window).unbind('resize.dlg');
    }
});
share|improve this answer
I need the resize event for other app related events. Just not for this dialog? – AnApprentice Mar 30 '12 at 22:08
1  
See my update to the answer – ThiefMaster Mar 30 '12 at 22:09
1  
I do have the need for other resize events – AnApprentice Mar 30 '12 at 22:10
1  
As I said, look at my updated answer - it should now only unbind the correct resize event. – ThiefMaster Mar 30 '12 at 22:10
That is really snazzy. Thank you – AnApprentice Mar 30 '12 at 22:12

Add this to your dialog options:

close:function(){
    $(window).unbind('resize');
}
share|improve this answer

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.