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");
If it isn’t automatically centering, then you have an error in your document markup (a missing closing tag is typically the culprit).
http://jsbin.com/uhago4/edit