free countdown script showing timer and referring to another site

Mobile
feeds
Welcome Login | Register

free countdown script showing timer and referring to another site
Reply Your Comments:
Click this button if you are interested in replying to this topic and leave your comments
Sent To Friend
CLick this button if you want to send this page to a friend.
Subsribe To Rss Feeds
Subscribe to RSS
CLick this button if you want to subscribe to this RSS Feed. You can use your browsers feeds burners if you have mozilla or internet explorer 7 or higher and keep up with updates.
  Forums Index
      » Javascipt Forums
        » » free countdown script showing timer and referring to another site
free countdown script showing timer and referring to another site
Post Description: free countdown script showing timer and referring to another site Javascipt
Post Tags:
This Post Has Been Viewed 827 Times Since Fri May 25, 2007 10:57 am Author hostman with 0 replies
free countdown script showing timer and referring to another site
Advertise On This Page




if you are visiting us here at wallpaperama its probably because you are looking for a javascript code to be able to put a countdown clock on your wesbite right? well, if you are, then you are in luck. here at wallpaperama we have many wallpapers, but we also help wallpaper webmaster like you make their website more functional and in combination with different programming languages like javascript you can make it possible to put a count down timer on your website to tell your visitors that you are about to do something.

asuming you are a beginner programmer, i will show you how you can do this. ok, to start this tutorial i will asume you are using a pc computer. i am using a windows xp computer. as with every windows xp, it comes with notepad.exe - so open a blank notepad and copy and paste this code into it:

CODE:
<script language="JavaScript">
var countDownInterval=50;
var countDownTime=countDownInterval+1;
function countDown(){
countDownTime--;
if (countDownTime <=0){
countDownTime=countDownInterval;
clearTimeout(counter)
window.location="http://www.wallpaperama.com";
return
}
if (document.all) //if IE 4+
document.all.countDownText.innerText = countDownTime+" ";
else if (document.getElementById) //else if NS6+
document.getElementById("countDownText").innerHTML=countDownTime+" "
else if (document.layers){ //CHANGE TEXT BELOW TO YOUR OWN
document.c_reload.document.c_reload2.document.write('Launching in <b id="countDownText">'+countDownTime+' </b> seconds')
document.c_reload.document.c_reload2.document.close()
}
counter=setTimeout("countDown()", 1000);
}
function startit(){
if (document.all||document.getElementById) //CHANGE TEXT BELOW TO YOUR OWN
document.write('Launching in <h1 id="countDownText">'+countDownTime+' </h1> seconds')
countDown()
}
if (document.all||document.getElementById)
startit()
else
window.onload=startit
setTimeout("location.href='http://www.wallpaperama.com'" , t)
</script>


once you have copied and paste it save the file as wallpaperama-timer.html and then open it with your browser like firefox or internet explorer.



here's a script that will show a timer on the page, its like a countdown script made up in javascript
this is how it look like, when the timer goes to zero it will re-direct you to the wallpaperama home page:

hope that helps, if it sucks please tell me. of if it helped you, i would appreciate any feedback.

thanks



Leave Your Comments

Your Name
Your Email Address (Will Not Be Published)
Notify Me When Someone Replies to this Page
(An email will be sent to you when someone replies to your comments)
Your Comments
Include A Picture with your comments
Share
| More
Share this page by putting this URL in your comments to other websites like myspace, Facebook, Twitter friendster, Hi5, Groups, Boards, Forum or others. Just Copy and Paste this Code
URL:
To embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it.
Embed:
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums
BBCODE:
Subscribe Feeds
Webmasters - Exchange Links With Us. Add related websites to this topic
Add Link:
Links Related to : free countdown script showing timer and referring to another site

Comments and replies About free countdown script showing timer and referring to another site
(0) Comments