cfwindow Title Attribute in IE
Hey, guys.
I'm having a problem with cfwindow in CF8. When I add graphics to my page, the title of the cfwindow appears for a split second in the left area of the page on first visit and reload for IE 8. Has anyone encountered this problem before or heard of a fix? I know you can stop the body of the window from displaying on refresh and load by using the "source" attribute but for simplicity's sake, I've removed that from the code displayed below.
<html>
<head>
<title>CFWindow Example</title>
<cfajaximport tags="cfwindow" />
<cfset ajaxOnLoad("showWindow") />
<script type="text/javascript">
function showWindow(){
ColdFusion.Window.show("RegionChooser");
}
</script>
</head>
<body>
<img src="http://www.google.com/intl/en_ALL/images/srpr/logo1w.png" />
</body>
</html>
<cfwindow name="RegionChooser" title="Window Title" center="true" modal="true" initshow="false">Window Body</cfwindow>
Thanks in advance.
