0

I've got this example page where I'm trying to put the wmode of every youtube element inside the page to "transparent".

With Chrome and its inspector I notice that my javascript works but the browser view doesn't update and the overlay still is under the youtube video. If I put the wmode property directly in the HTML though and I open it in Chrome everything is ok and the video is UNDER the div.

Here is the page http://dl.dropbox.com/u/4064417/provaJs.html

Any suggestion why it's behaving like this?

Thank you in advance!

Andrea Silvestri
  • 992
  • 4
  • 13
  • 38

1 Answers1

0

Try forcing the browser to redraw the flash element

FlashElement.style.display = "none";
FlashElement.style.display = "block";
elkaz
  • 310
  • 2
  • 6