Estoy intentando que la barra se actualice con el tiempo que queda y su porcentaje, pero no sé porque cambia el ancho del div a "width: 4.36534e+11%"
Código Javascript
:
Ver originalfunction barra(){
var tiempo = new Date();
var segs = "<? echo $segs; ?>";
var am = "<? echo $city['build_'.$encon.'_cons_time']; ?>";
var re = tiempo.getTime()-am;
var cien = re*100;
var por = cien/segs;
document.getElementById('ampliando').style.width=''+por+'%';
}
setInterval("barra()",1000);