I want to display a modal dialog that contains several elements, including an iframe. I want this dialog to occupy about 90% of the width and height of the window. The markup is similar to the following:
<div id="dialog">
<div>Header information</div>
<iframe></iframe>
</div>
How can I achieve this? When I use the jquery ui dialog, even when I specify a width and height via the dialog options or a class, they are overridden by inline styles that jquery ui assigns to the elements.