Connecting Tech Pros Worldwide Forums | Help | Site Map

resize modal dialog

Newbie
 
Join Date: May 2007
Posts: 10
#1: May 24 '07
I have a modal dialog that opens up a url with my content in an iframe, I do this so the content can post back to itself, etc., I want the modal dialog to only be as big as it needs to be to show all the content. So using some javascript in the page that contained in the iframe, how can I resize the modal dialog?

Newbie
 
Join Date: May 2007
Posts: 10
#2: May 24 '07

re: resize modal dialog


Nevermind, I found it, for anybody else that finds this useful i did it like this:
parent.window.dialogWidth = [your width in pixels] + "px";
parent.window.dialogHeight = [your height in pixels] + "px";
Reply