Написал на днях, может кому пригодится.
Сервер отдает время конца акции:
<b data-time="1398880830"></b><br/>
<b data-time="1398870821"></b>
Уменьшение счетчика:
<script>
String.prototype.plural = Number.prototype.plural = function(a, b, c) {
var index = this % 100;
index = (index >=11 && index <= 14) ? 0 : (index %= 10) < 5 ? (index > 2 ? 2 : index): 0;
return(this+[a, b, c][index]);
}
function downtimers(){
$('[data-time]').each(function(){
var s = parseInt($(this).data('time'))-parseInt(new Date().getTime()/1000);
if(s<0)
$(this).text('акция закончилась');
else{
s-=(d=Math.floor(s/60/60/24))*24*60*60;
s-=(h=Math.floor(s/60/60))*60*60;
s-=(m=Math.floor(s/60))*60;
$(this).text(
(d<10?'0'+d:d).plural(" дней "," день "," дня ")+
(h<10?'0'+h:h).plural(" часов "," час "," часа ")+
(m<10?'0'+m:m).plural(" минут "," минута "," минуты ")+
(s<10?'0'+s:s).plural(" секунд "," секунда "," секунды ")
);
}
});
}
downtimers();
setInterval(downtimers,1000);
</script>