Need Countdown clock for landing page

vinnythejinny

Newbie
Joined
Sep 24, 2008
Messages
24
Reaction score
7
I have seen many counterdown clocks on clickbank page which basically try to change the buyers mindset that this offer will expire in about 12 hours and sorta crap. This is basically to make the buyer "Hurry" on the offer or else he looses that coupon or whatever.

I want something similar, so searched google, BHW and other forums but couldn't get something that does this.

automatically displays the date as "users PC date + 1 day more"

so if i am from USA and its 19th august today, the LP should should that this coupon code will expire on 20th august. That 20th august should appear dynamically (todays date + 1 day). So on 20th aug, it should show coupon will expire on 21st and so on.

Appreciate if soemone know a PHP/Javascript code to make this work. thanks
 
I have seen many counterdown clocks on clickbank page which basically try to change the buyers mindset that this offer will expire in about 12 hours and sorta crap. This is basically to make the buyer "Hurry" on the offer or else he looses that coupon or whatever.

I want something similar, so searched google, BHW and other forums but couldn't get something that does this.

automatically displays the date as "users PC date + 1 day more"

so if i am from USA and its 19th august today, the LP should should that this coupon code will expire on 20th august. That 20th august should appear dynamically (todays date + 1 day). So on 20th aug, it should show coupon will expire on 21st and so on.

Appreciate if soemone know a PHP/Javascript code to make this work. thanks

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>

This is a simple script with no design, customize it as you want!

EDIT: I took this script from this website here: (after I searched on G.) I think it's what you want right?
 
Last edited:
Thanks. I already saw that script but the issue is it sets a target date. I don't want that functionality. What i want is the date should be automatically todays date +1 day. So everyday users will feel that within a day this offer will expire.
 
Thanks. I already saw that script but the issue is it sets a target date. I don't want that functionality. What i want is the date should be automatically todays date +1 day. So everyday users will feel that within a day this offer will expire.

Well I guess that you have to change the date everyday then, maybe there is another solution, maybe a dynamic PHP driven page, idk, if there is I'd be happy to hear it, as I have no knowledge in JS or PHP, a programmer should know this...
 
Code:
var dateString = dateFormat(now + 86400, "fullDate");
$.("#mySpan").html(dateString);
 
I do not want to hijack, but it is along the same lines. Is there a script like this that can be implemented into an email?

I want people to get the email and based on the time it was received, it will show much much longer the offer is valid.

Thanks.
 
Back
Top