I have the following in an html file:
<div id='confirm'>
<div class='header'><span>Stay Online</span></div>
<div class='message'></div>
<div class='buttons'>
<div class='no simplemodal-close'>No</div><div class='yes'>Yes</div>
</div>
</div>
which is a simplemodal from http://www.ericmmartin.com/projects/simplemodal-demos/
and I created a java script timer
if (iniTimer == 15){
// call the Confirm class to launch the confirm box.
}
iniTimer = setTimeout("ClockCount()",1000);
in its own .js file and when the timer equals 15 secs I want it to pop this div from within javascript. Is this possible and if so could you please tell me how to do it?
Thank you very much,
Frank G.
Assuming you have set up Something like