I am having a website : http://www.rapidsurfing.net/ The input box in it is loaded using iframe.Can I use a count down timer in that place before seeing the box ? After count down (eg: 10 secs ) the box should be visible. Plz help !
You can use a script similar to the script posted on this thread: http://forums.digitalpoint.com/showthread.php?t=323836 But, instead of using alert() you should replace your content (changing innerHtml value).
Sir, Please check my site.Its have a button " Generate " , which is loaded as frame from another page index.php.So before seeing that generate button I want a timer at that place.So what to do ? Help!
You can have two divs. One (div1) with your frame and other (div2) with your counter - div1 will be visible only after timer expiration. - div2 will be visible only till timer expiration To make "div1" invisible/visible you can do: document.document.getElementById("div1").style.display = 'none'; document.document.getElementById("div1").style.display = ''; // visible