jQuery UI problem centering a dialog
- by marc
I've got a jQuery dialog box that does display and respond to button clicks correctly. Unfortunately it's always positioned at 0, 0 in the browser window despite my attempts to convince it otherwise. Any ideas?
var $dialog = $('<div></div>')
.html('my message')
.dialog({ autoOpen: false, title: 'my title', position: 'center', bgiframe: true
});
$dialog.dialog('option', 'buttons', buttons);
$dialog.dialog('option', 'position', "center");
$dialog.dialog("open");