Código Javascript
:
Ver originalsetTimer: function(){
currentTimeLeft=parseInt(currentTimeLeft-secondsForTimer);
if(currentTimeLeft<=0){
$('#hoursLeft').empty().append("00");
$('#minutesLeft').empty().append("00");
$('#secondsLeft').empty().append("00");
$('#timerBlock').hide();
Index.getCurrentParticipants(url_prefix_var,true);
clearInterval(timerTimeLeft);
} else {
var wholeSeconds=parseInt(currentTimeLeft/1000);
var wholeMinutes=parseInt(currentTimeLeft/60000);
var wholeHours=parseInt(wholeMinutes/60);
var seconds=parseInt(wholeSeconds%60);
var minutes=parseInt(wholeMinutes%60);
var days=parseInt(wholeHours/24);
var hours=parseInt(wholeHours%24);
if(wholeHours<10){
$('#hoursLeft').empty().append("0"+wholeHours);
}else{
$('#hoursLeft').empty().append(wholeHours);
}
if(minutes<10){
$('#minutesLeft').empty().append("0"+minutes);
}else{
$('#minutesLeft').empty().append(minutes);
}
if(seconds<10){
$('#secondsLeft').empty().append("0"+seconds);
}else{
$('#secondsLeft').empty().append(seconds);
}
}
}
setInitialTimer: function(){
if(currentTimeLeft<=0){
$('#timerBlock').hide();
Index.getCurrentParticipants(url_prefix_var,true);
clearInterval(timerTimeLeft);
}else{
var wholeSeconds=parseInt(currentTimeLeft/1000);
var wholeMinutes=parseInt(currentTimeLeft/60000);
var wholeHours=parseInt(wholeMinutes/60);
var seconds=parseInt(wholeSeconds%60);
var minutes=parseInt(wholeMinutes%60);
var days=parseInt(wholeHours/24);
var hours=parseInt(wholeHours%24);
if(wholeHours<10){
$('#hoursLeft').empty().append("0"+wholeHours);
}else{
$('#hoursLeft').empty().append(wholeHours);
}
if(minutes<10){
$('#minutesLeft').empty().append("0"+minutes);
}else{
$('#minutesLeft').empty().append(minutes);
}
if(seconds<10){
$('#secondsLeft').empty().append("0"+seconds);
}else{
$('#secondsLeft').empty().append(seconds);
}
}
}
Ese es el jQuery que utilizan. De todos modos, si estás haciendo el parse en php, obtener las horas, minutos y segundos, es una operación muy sencilla.
EDIT: Cuidado que en la línea 14 me cambia el símbolo del porcentaje por su entidad HTML.