|
|
|
|
||||||
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
I noticed with IE 6 that SELECT menus will not let div tags cover them/
make them invisible. Is there a workaround for this that does not involve using the iFrame or using javascript to shut off each SELECT? Thanks in advance for any information Steve |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
Steve wrote:
> I noticed with IE 6 that SELECT menus will not let div tags cover them/ > make them invisible. > > Is there a workaround for this that does not involve using the iFrame > or using javascript to shut off each SELECT? > > Thanks in advance for any information > Well known IE bug, Google is your friend: http://www.google.com/search?hl=en&q...=Google+Search IE form controls z-index bug - Google Search -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
On Mar 12, 11:29 am, "Jonathan N. Little" <lws4...@central.net> wrote:
> Steve wrote: > > I noticed with IE 6 that SELECT menus will not let div tags cover them/ > > make them invisible. > > > Is there a workaround for this that does not involve using the iFrame > > or using javascript to shut off each SELECT? > > > Thanks in advance for any information > > Well known IE bug, Google is your friend: > > http://www.google.com/search?hl=en&q...-index+bug&btn... > IE form controls z-index bug - Google Search Good advice, I know, because I searched google before I came here and the only solutions I found were using iFrames and javascript to hide the SELECT. I was hoping for a third solution, which I believe I wrote in my original post. Thanks anyway |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
Steve wrote:
> I was hoping for a third solution, which I believe I > wrote in my original post. Thanks anyway > Okay, don't use IE ;-) -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
On Mar 14, 2:08 pm, "Jonathan N. Little" <lws4...@central.net> wrote:
> Steve wrote: > > I was hoping for a third solution, which I believe I > > wrote in my original post. Thanks anyway > > Okay, don't use IE ;-) If you can sell my boss and our clients on that I would be happy to comply! |
|
|
|
#6 |
|
Messages: n/a
Hébergeur: |
Steve wrote:
> On Mar 14, 2:08 pm, "Jonathan N. Little" <lws4...@central.net> wrote: >> Steve wrote: >>> I was hoping for a third solution, which I believe I >>> wrote in my original post. Thanks anyway >> Okay, don't use IE ;-) > > If you can sell my boss and our clients on that I would be happy to > comply! How about toggling their visibility? Here is a rudimentary example. Does require JavaScript <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta http-equiv="content-language" content="en-us"> <title>Blinker</title> <script type="text/javascript"> function blinkme(state){ var target=document.getElementById('blink'); if(state){ target.style.visibility="visible"; } else{ target.style.visibility="hidden"; } } </script> </head> <body> <form> <div id="blink"> <label for="fred">Bink in and out</label> <select name="fred" id="fred"> <option>foo</option> <option>bar</option> <option>baz</option> </select> </div> <div> <input type="button" value="Bink in" onclick="blinkme(1)"> <input type="button" value="Bink out" onclick="blinkme(0)"> </div> </form> </body> </html> -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
![]() |
| Outils de la discussion | |
|
|