FN-FORUM: Javascript
date posted 24th August 2004 12:09
Afternoon all,
Could someone tell me how to display a link after a pause?
I've got this for the timer, but I wasn't sure how to print a link to screen
in JS.
Snip ---
pausecomp(1250);
function pausecomp(Amount)
{
d = new Date() //today's date
while (1)
{
mill=new Date() // Date Now
diff = mill-d //difference in milliseconds
if( diff > Amount ) {break;}
}
}
Any suggestions are much appreciated!
Tom