Answers for "jquery ui dialog position fixed center"

0

jquery ui dialog position fixed center

$('selector').dialog({
    autoOpen: false,
    open: function(event, ui) {
        $(event.target).dialog('widget')
            .css({ position: 'fixed' })
            .position({ my: 'center', at: 'center', of: window });
    },
    resizable: false
});
Posted by: Guest on July-20-2020

Code answers related to "jquery ui dialog position fixed center"

Code answers related to "Javascript"

Browse Popular Code Answers by Language