Well, I don't use it for flash, so I don't know if it holds true there also, but I know that netscape doesn't have the same problem with select boxes. If netscape does have this problem, then I very much doubt that the iframe trick will work for it. Your best bet would probably be to change...
oops, I forgot to include the code that gets all the HM_... variables.
Here it is:
HM_DOM = (document.getElementById) ? true : false;
HM_NS4 = (document.layers) ? true : false;
HM_IE = (document.all) ? true : false;
HM_IE4 = HM_IE && !HM_DOM;
HM_Mac = (navigator.appVersion.indexOf("Mac") !=...
This is a common problem, and there are 2 different solutions, depending on what browsers you want to support.
Prior to IE 5.5, you just had to hide the 'windowed' elements (flash, select boxes, etc) by checking all such elements in the page and determining if they overlap.
Starting with IE...
I think there's a way to do this, but you may want to try this out instead:
http://www.interactivetools.com/products/htmlarea/
It's a rich text editor that works with IE Windows (I think 5.5+) and Mozilla/Netscape.
I'm having the problem that a dynamically created element (using document.createElement()) is always showing over a static element (inline html element), regardless of their z indexes. Does anyone know a good workaround?
Thanks in advance,
Adam
PS. I'm not talking about the problem where...
FYI
The google toolbar looks for popups that are not caused by user action, and kills them. It will allow "one popup per user click". So, if you have a function that creates a popup when an onclick event is fired, the google toolbar should let it through (at least it should let 1 through)...
The problem with your script is the way that IE deals with javascript. While javascript is executing, it won't redraw the screen. So, to get it to show the changes as you, you'll want to do something like this:
function stepOne()
{
//do stuff here
progressBar.SetPosition(1)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.