jquery UI iframe displays but no content on IE8

fisherman1

New Member
The below code works. The iframe is displayed but the content within is blank. Upon load the content is briefly correctly displayed but then the box turns blank (within a second). The blank content will reappear if I resize, click on or drag the iframe around the screen. The box appears fully populated in chrome and firefox so I am quite confused.Any ideas?\[code\]$('a#pop').live('click', function (e) { e.preventDefault(); var page = $(this).attr("href") var pagetitle = $(this).attr("title") var $dialog = $('<div></div>') .html('<iframe style="border: 0px; " src="' + page + '" width="100%" height="100%"></iframe>') .dialog({ autoOpen: false, cache: false, show: "fold", modal: true, hide: "fold", height: 325, width: 800, title: pagetitle }); $dialog.dialog('open'); }); \[/code\]Link to display the popup:\[code\]<a id="pop" href="http://stackoverflow.com/questions/15886466/mysite.come/win.php" title="Test Popup">Test Popup</a><br>\[/code\]thanks for the feedback in advanced.
 
Top