0

i have one count down timer using http://keith-wood.name/countdown.html

var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#defaultCountdown').countdown({until: austDay,format: 'HMS'});

this works fine.

but for one year, as i can see in code that

austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);

is generating last date.

my last date is coming from PHP and i want to change the above line so that last date will be calculated from one of PHP variable.

Thanks

1 Answer 1

2
austDay = new Date('<?php echo date("F d, Y H:i:s", time()); ?>');
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.