$(dialogId).dialog({ autoOpen: 'false', modal: true, draggable: false, resizable: false, buttons: buttons, title: title, width: 'auto', open: function(){ /* IE HACK */ $buttonPane = $(this).next(); $buttonPane.find('button:first').addClass('accept').addClass('action'); $('.ui-dialog-titlebar-close').hide(); $('.ui-dialog').addClass('open_dialog'); $(this).css('overflow','hidden');// IE hack onOpen; }, close: function(){ $('.ui-dialog').removeClass('open_dialog'); afterClose; } });