I am using jQuery UI dialog to load ajax content. It is correctly positions the dialog vertically, however, with width: "auto"
option it does not center it horizontally. It is off-centered, like 100px to the right of center.
Here is my code:
$('.open').live('click', function(e) {
e.preventDefault();
$("#modal").load($(this).attr('href')).dialog({
title: $(this).attr('title'),
modal: true,
autoOpen: true,
draggable: false,
resizable: false,
width: 'auto',
position: ['center', 'top']
});
});
Any ideas if there's a way to have it auto resize and remain centered?
EDIT: This works:
$("#modal").load($(this).attr('href'), function() {
$("#modal").dialog({
title: $(this).attr('title'),
width: 'auto',
modal: true,
autoOpen: true,
draggable: false,
resizable: false,
position: ['center', 150],
create: function(event, ui) {}
});
});
margin-left:auto;margin-right:auto;
to your object to set it center, do it. – Immitigable