Re: IE overlapping over select box on IE 6



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
.



Relevant Pages

  • Re: IE overlapping over select box on IE 6
    ... you need to ask people who support Prototype. ... Ergo, ask the ... Or create the iframe yourself and see if that takes ... No one in the forum of Prototype framework answers my question at all. ...
    (comp.lang.javascript)
  • Re: IE overlapping over select box on IE 6
    ... you need to ask people who support Prototype. ... Ergo, ask the ... Or create the iframe yourself and see if that takes ... No one in the forum of Prototype framework answers my question at all. ...
    (comp.lang.javascript)
  • IE overlapping over select box on IE 6
    ... Here I use prototype framework. ... I create a popup div, ... but the problem when loading an iframe it make ... IE stucks for a while. ...
    (comp.lang.javascript)