Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~190 People Reached
About Me

Some friend's are like snow flakes they melt away others are like memories they last forever.
Which one are you ???

Favorite Forums
Favorite Tags
Member Avatar for Cappagh

<html> <head> <script> var count = 6; var time = setInterval(countdown, 1000); function countdown() { count = count - 1; var cx = document.getElementById("cdown"); if (count < 0) { count = 5 } cx.innerHTML = count; } </script> <body> <p id="cdown">5</p> </body> </html> This is a script for a count …

Member Avatar for JorgeM
0
190