$("#statusbox").dialog({
autoOpen
: false,
bgiframe
: true,
modal
: true,
width
: 'auto',
height
:'auto',
title
:"Check Order Status",
buttons
: {
Find: function() {
get_status
();
},
Close: function() {
$
(this).dialog('close');
}
}
});
also if there was enough content then it could potentially go beyond the bounds of the page so I would think I could use a max height to prevent that but what do I do if they re-size the window ?