Re: IE overlapping over select box on IE 6
- From: Logos <tyler.style@xxxxxxxxx>
- Date: Wed, 30 Jan 2008 06:02:57 -0800 (PST)
On Jan 29, 1:43 am, Chamnap <chamnapchh...@xxxxxxxxx> wrote:
Here I use prototype framework. I create a popup div, but there is a
problem with this on IE 6 when it is over a select box. I already use
an iframe, but it doesn't work well. Can anyone help me? Here is my
code:
if((navigator.appVersion.indexOf('MSIE')>0) &&
(navigator.userAgent.indexOf('Opera')<0)) {
new Insertion.After("reportBugPop",
'<iframe id="reportBugPop_iefix" ' +
'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);"
' + 'src="javascript:false;" frameborder="0" scrolling="no"></
iframe>');
setTimeout(function() {
Position.clone("reportBugPop", "reportBugPop_iefix");
$('reportBugPop_iefix').style.zIndex = 1;
$('reportBugPop').style.zIndex = 2;
$('reportBugPop_iefix').show();
}, 50);
}
It overlaps very well, but the problem when loading an iframe it make
IE stucks for a while. Why it is like that? Any help is really
appreciated.
Thanks
Chamnap
Seeing as you're creating the iframe via Prototype, RobG is right -
you need to ask people who support Prototype. YOUR code is not
creating the iframe - the Prototype framework is. Ergo, ask the
Prototype people. Or create the iframe yourself and see if that takes
any longer; if there is a difference, the problem is with the
framework.
Tyler
.
- References:
- IE overlapping over select box on IE 6
- From: Chamnap
- IE overlapping over select box on IE 6
- Prev by Date: Re: swapping images (more than 1 instance)?
- Next by Date: Re: Open XML in excel with javascript?
- Previous by thread: Re: IE overlapping over select box on IE 6
- Next by thread: ISO a taxonomy of AJAX errors
- Index(es):
Relevant Pages
|