4

In a webpage I need to show a div layer over the flash banner which is not using wmode=transparent setting.

How to solve it?

viam0Zah
  • 25,949
  • 8
  • 77
  • 100
Satish Kalepu
  • 71
  • 1
  • 10

1 Answers1

2

From what I remember you can shove the div into an <iframe> (perhaps using Javascript so you don't make a mess of your HTML).

Iframes are window objects like flash so they're able to overlay each other.

Greg
  • 316,276
  • 54
  • 369
  • 333
  • 1
    There is a JQuery plugin to automatically do that, see the answer for a similar question: http://stackoverflow.com/questions/712476/change-the-z-index-of-flash-content/712492#712492 – viam0Zah Sep 27 '09 at 13:14