Link to home
Start Free TrialLog in
Avatar of LimonKavas
LimonKavasFlag for Chile

asked on

Jquery pop-up problem with flash

Hi

I'm using jqModal (http://dev.iceburg.net/jquery/jqModal/), but the problem that the launch
pop-up flash built into the page appears above and not below the pop-up
Avatar of Andyc75
Andyc75
Flag of Canada image

Try setting the wmode property of your flash object to "transparent" or "opaque".

By default I think its set to "window" in which the flash object is in front of everything.

http://www.communitymx.com/content/article.cfm?cid=e5141
Avatar of Aidiakapi
Aidiakapi

I'd recommend you to give an id to the embed object (for my example "test")
Then use something like this (hope this helps you):
CSS:
#test.hide /* Add this in your CSS file */
{
  display: none;
}

HTML:
<embed id="test"></embed> <!-- Add the ID in the embed statement -->

JavaScript:
/* PLACE THIS CODE WHERE YOU OPEN THE WINDOW */
$('embed#test').addClass('hide');
/* PLACE THIS CODE WHERE YOU CLOSE THE WINDOW */
$('embed#test').removeClass('hide');

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of LimonKavas
LimonKavas
Flag of Chile image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial