Sadly I'm not a jQuery/JavaScript guru and I'm stumped with a problem.
In short, there's going to be an event where the price of a few fixed items goes down by the minute between two dates.
For example:
2012 07 25 - $1500 -> 2012 08 01 - $1000
And my problem is I don't even know where to start with making this a real-time countdown. Only the price is needed to appear. Any help, pointers, alternatives would be a great help.
Thanks to the replies I was able to create a solution. Sadly the pure JS version which Esailija supplied didn't want to work, but based on that I was able to create a php/ajax solution for this. Yes, I know this will put a strain on the server, but the JS version showed a whole new set of numbers not defined in the range, but php with the same formula produced valid results. Below you can find the full php code for this.
<?php
$dateStart = strtotime("16 july 2012 00:00");
$dateEnd = strtotime("18 july 2012 9:30");
$curDate = strtotime("now");
$startPrice = 3628000;
$endPrice = 3499000;
$progress = ($curDate - $dateStart) / ($dateEnd - $dateStart);
$curPrice = $startPrice - ($startPrice-$endPrice) * $progress;
$curPrice = round($curPrice);
if ($dateStart > $curDate) {
echo $startPrice;
} elseif ($curDate >= $dateEnd) {
echo $endPrice;
} else {
echo $curPrice;
}
?>