No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
I have a code for countdown timer and it works perfectly fine.. <html> <title>project prelim</title> <head> <script type="text/javascript"> var ss = 10; function countdown() { ss = ss-1; if (ss<0) { window.location="testover.html"; } else { document.getElementById("countdown").innerHTML=ss; window.setTimeout("countdown()", 1000); } } </script> </head> <body onload="countdown()"> <center> <table width="100%" height="600px" style="text-align:center;"> <tr><td …
First define the tag where you want to display the countdown timer ! <h1 id=countdown></h1> and then type in this javascript ! <script> $(function(){ var BigDay = new Date("08 Sept 2015, 09:30:00"); var msPerDay = 24 * 60 * 60 * 1000 ; window.setInterval(function(){ var today = new Date(); var …
I need to create a leaderboard for a online quiz that I am about to conduct.... I also need to setup a login and a seperate forum for users in the same level to interact with each other...and I should moderate their comments... pls helpme..
The End.