Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread Geoffrey Knutzen
I think you need to add the parameter wmode:transparent to your embed/object tag. That will allow a div to go over the flash movie. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent: Wednesday, January 17, 2007 11:20 AM To: discuss@jquery.com

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread rolfsf
Thanks Geoffrey - I tried that, as I had read it elsewhere, but it didn't work. Perhaps I've got a typo somewhere - I'll go back and look again. Geoffrey Knutzen wrote: I think you need to add the parameter wmode:transparent to your embed/object tag. That will allow a div to go over the

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread SeViR
I use SWFObject to insert Flash. in html I have: div class=flash title=path/file.swf style=width:100px;height:200pxIf you can see this, then you have not flash./div and javascript: $(div.flash).each(function(){ this.style.zIndex = 1; this.style.visibility =

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread rolfsf
Thanks SeViR! I'll give it a try r. SeViR wrote: I use SWFObject to insert Flash. in html I have: div class=flash title=path/file.swf style=width:100px;height:200pxIf you can see this, then you have not flash./div and javascript: $(div.flash).each(function(){

Re: [jQuery] Using JQuery to fix Flash z-index problem?

2007-01-17 Thread Geoffrey Knutzen
Note, this also works for safari on a mac -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of rolfsf Sent: Wednesday, January 17, 2007 11:54 AM To: discuss@jquery.com Subject: Re: [jQuery] Using JQuery to fix Flash z-index problem? Thanks SeViR! I'll give