Resizing IE Modal Dialog in JavaScript
December 3rd, 2009
No comments
If you open an IE Modal Dialog window and later on need to resize it using JavaScript code, standard "window.resizeTo" method doesn't work. Use dialogWidth and dialogHeight instead. For example:
window.dialogWidth='640px'; window.dialogHeight='480px';
Recent Comments