I forgot to mention - this doesn't appear to be limited to dialog. Just moving an iFrame causes the IFrame to refresh in FF:
<a href="javascript:void(0);" onClick="moveIFrame();">Move IFrame</a>
<br /><br />
<div id="IFrameDiv1">
<strong>IFrameDiv1</strong>
<div id="mIframe3">
<iframe src="mIframe3.cfm"></iframe>
</div>
</div>
<br />
<div id="IFrameDiv2" style="display:block; background-color:red">
<strong>IFrameDiv2</strong>
</div>
<script type="text/javascript" language="javascript">
function moveIFrame(){
if ( $('#mIframe3').parent().attr('id') == 'IFrameDiv1' ){
$('#mIframe3').appendTo('#IFrameDiv2');
} else {
$('#mIframe3').appendTo('#IFrameDiv1');
}
}
</script>
-- You received this message because you are subscribed to the Google Groups "jQuery UI" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
