• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Simple count down - $10 USD

kito2

www.masteria.net
Joined
Mar 9, 2009
Messages
3,766
Solutions
1
Reaction score
225
Location
Chile, Santiago
Like topic name says I need a simple count down that shows days, hours, minutes and seconds till a date that you put...

The first post that works will be payed with $10 USD (paypal account), so send me a PM with you paypal mail to pay you!
 
I will test that code:

<script language="JavaScript">
TargetDate = "12/31/2020 5:00 AM";
BackColor = "palegreen";
ForeColor = "navy";
CountActive = true;
CountStepper = -1;
LeadingZero = true;
DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds.";
FinishMessage = "It is finally here!";
</script>
<script language="JavaScript" src="http://scripts.hashemian.com/js/countdown.js"></script>

If it works, I will pay you... Your paypal mail?
 
Code:
<html>
<head>
</head>
<script type="text/javascript">
function contar() {
  fecha=new Date(2005,12,24,0,0,0); //año,mes,dia,hora,minuto,segundo
  ahora=new Date();
  dif=new Date(fecha-ahora);
  txt='Quedan '+dif.getDate()+' días, '+dif.getHours()+' horas, ';
  txt+=dif.getMinutes()+' minutos y '+dif.getSeconds()+' segundos para Navidad';
  document.getElementById('pepe').innerHTML=txt;
}
</script> 
<body onload="setInterval('contar()',1000)">
<span id="pepe"></span>
</body>
</html>
 
Back
Top