Bootstrap-modal pops up to Flash

I am using the Twitter Bootstrap bootstrap-modal plugin. It works well, except that there is a flash element behind it. When the botstrap-modal dialog box is up and there is a flash element behind it, the flash element is on top of everything else. How to fix it?

+3
source share
1 answer

You need to pass the attribute to the <object> or <embed> so that html displays the contents of your flash memory, since this function is disabled by default. So, add the following attribute to your tag, and the modal popup should work fine:

 wmode="opaque" 

Documentation

+7
source

Source: https://habr.com/ru/post/1412483/


All Articles