Hi Benjamin, thank you so much for your response to my issues. I ended up not
using the jqModal plugin at all and using just the latest version of jQuery
(1.2) and adding/modifying your suggestion. Below is the code I implemented
to get it to work the way I wanted it to. (If anyone else would like to
accomplish the same thing, you can see the live project at: 
http://abierose.com/clients/hcalvin/index.html
http://abierose.com/clients/hcalvin/index.html )

<!-- INLINE CSS -->

<style>

#newoverlay {
        opacity:0;
        filter: alpha(opacity=0); 
        -moz-opacity: 0;
        background-color: #000;
        display: none;
        position: absolute;
        left: 0px;
        top: 0px;
        width:100%;
        height:100%;
        text-align:center;
        z-index: 9000;  
}

#newSiteMessage {
        position: absolute;
        top: 17%;
        left: 50%;    
        margin-left: -400px;
        width: 600px;    
        background-color: #fff;
        color: #595959;
        border: 3px solid #8d4625;
        padding: 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 23px;
}

hr {
        width: 86%;
        text-align: center;
        color: #808080;
        height: 1px;
        background-color: #808080;
        border: none;
}

#newSiteMessage a:visited, #newSiteMessage a:link, #newSiteMessage a:active
{ 
        color: #8d4625;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        text-decoration: underline;
}

#newSiteMessage a:hover { 
        color: #595959;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        text-decoration: underline;
}

</style>

<!-- HTML -->

<div id="newoverlay" >
<div id="newSiteMessage">
<br>
Calvin Fabrics invites you to exerience AH<br>
<br>
<hr><br>
http://www.calvinfabrics.com  images/ahLogo.gif  <br>
<br>
<hr><br>
Or continue to  #  images/Calvin_logo_registered.gif  <br>
<br>
</div>
</div>

<!-- JAVASCRIPT -->

<script type="text/javascript">
function showPopupBlack() {     
        $("#newoverlay").css("display","block");
        $("#newoverlay").css("opacity",0.10);
        $("#newoverlay").fadeTo(1000,0.80);     
}               

function hidePopupBlack() {
        $("#newoverlay").fadeOut(1000, function() {
                $("#newoverlay").css("display","none");
                } );
}
                
$().ready(function() {
        setTimeout( "showPopupBlack();", 1500);
        }
);                      

</script>

---------------------------------------------------------------------------------------------------------------------------


bmsterling wrote:
> 
> for question 1:
> 
> setTimeOut(myModalFunction, 2000);
> 
> or
> 
> setTimeOut(function(){
> // your modal code
> }, 2000)
> 
> for question 2:
> 
> There is a fix for keeping the flash behind a div, but I could not find it
> right away, I will look around a little later for one of the projects that
> I
> had that issue with, but in the mean time, do a search for "flash under
> div"
> or something like that.
> 
> On 9/28/07, abierose <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> Hello, I am new to jQuery but I absolutely love it.
>>
>> I am currently using jQuery for a client project I am working on. I am
>> also using the jqModal plugin to automatically display a modal window
>> when the user goes to the site. The questions I have are as follows:
>>
>> 1. How can I delay the display of the modal window so that it displays
>> a couple of seconds after the document loads?
>>
>> and
>>
>> 2. How do I get the flash content to show beneath the modal window
>> overlay? Currently, the flash content does not show at all until the
>> modal window is closed.
>>
>> Here is the page I am working on:
>>
>> http://abierose.com/clients/hcalvin/index.html
>>
>> Any help would be greatly appreciated!
>>
>> abierose
>>
>> --
>> View this message in context:
>> http://www.nabble.com/jqModal%2C-Flash%2C-and-Timing-Event-Firing-tf4537705s15494.html#a12951183
>> Sent from the JQuery mailing list archive at Nabble.com.
>>
>>
> 
> 
> -- 
> Benjamin Sterling
> http://www.KenzoMedia.com
> http://www.KenzoHosting.com
> http://www.benjaminsterling.com
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jqModal%2C-Flash%2C-and-Timing-Event-Firing-tf4537705s27240.html#a13166644
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to