Hello. I have iframe that set on 100% width and height on the page and jQueryUI dialog: ---------------------------------------------- <script> $("#dialog").dialog({ autoOpen: false, zIndex: 3999 }); $('#dialog').dialog('open'); }); </script>
<iframe src="..." id="mainframe" name="mainframe"> Browser is not support iframes. </iframe> <div id="dialog" title="Basic dialog"> <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p> </div> ---------------------------------------------- I don't know why, but when I move or resize it's work not correctly. When i move a mouse: It could resize, when i don't resize it, moving, when i don't move. It's like a crazy! If I make width:50%, than dialog works very good on blank part of page, but don't work correctly on iframe part.