pero me devuelve el error "Uncaught TypeError: Cannot set property 'innerHTML' of null" en la linia 97,
he estado mirando y no veo cual puede ser el problema... :S
Muchas gracias! :P
Código Javascript:
Ver original
window.setInterval("do_request()",25000); function do_request(){ $.post( "request.php", function getting(respuesta) { function put (goal){ var goal=goal; var ind=respuesta[goal]; var x=respuesta[goal+'x']; var y=respuesta[goal+'y']; var z=respuesta[goal+'z']; var cc=respuesta[goal+'cc']; var cl=respuesta[goal+'cl']; var r=respuesta[goal+'r']; var s=respuesta[goal+'s']; if (ind=="up") { document.getElementById('iu_'+goal).style.opacity=2; document.getElementById('iu_'+goal).style.MozOpacity=2; document.getElementById('id_'+goal).style.opacity=0.08; document.getElementById('id_'+goal).style.MozOpacity=0.08; document.getElementById('im_'+goal).style.opacity=0.08; document.getElementById('im_'+goal).style.MozOpacity=0.08; } if (ind=="neu") { document.getElementById('im_'+goal).style.opacity=2; document.getElementById('im_'+goal).style.MozOpacity=2; document.getElementById('id_'+goal).style.opacity=0.08; document.getElementById('id_'+goal).style.MozOpacity=0.08; document.getElementById('iu_'+goal).style.opacity=0.08; document.getElementById('iu_'+goal).style.MozOpacity=0.08; } if(ind=="down"){ document.getElementById('id_'+goal).style.opacity=2; document.getElementById('id_'+goal).style.MozOpacity=2; document.getElementById('im_'+goal).style.opacity=0.08; document.getElementById('im_'+goal).style.MozOpacity=0.08; document.getElementById('iu_'+goal).style.opacity=0.08; document.getElementById('iu_'+goal).style.MozOpacity=0.08; } var propx = 'rotate('+ x + 'deg)'; document.getElementById( goal +"_x").style.MozTransform = propx; document.getElementById( goal +"_x").style.WebkitTransform = propx; document.getElementById( goal +"_x").style.OTransform = propx; document.getElementById( goal +"_x").style.msTransform = propx; document.getElementById( goal +"_x").style.transform = propx; if (x>=-130) {if (x<-120) { document.getElementById("f_"+goal).innerHTML = "Nula";}} if (x>=-120) {if (x<-90) { document.getElementById("f_"+goal).innerHTML = "Muy Débil";}} if (x>=-90) {if (x<-60) { document.getElementById("f_"+goal).innerHTML = "Débil";}} if (x>=-60) {if (x<-30) { document.getElementById("f_"+goal).innerHTML = "Muy Moderada";}} if (x>=-30) {if (x<0) { document.getElementById("f_"+goal).innerHTML = "Moderada";}} if (x>=0) {if (x<30) { document.getElementById("f_"+goal).innerHTML = "Constante";}} if (x>=30) {if (x<60) { document.getElementById("f_"+goal).innerHTML = "Acusada";}} if (x>=60) {if (x<90) { document.getElementById("f_"+goal).innerHTML = "Intensa";}} if (x>=90) {if (x<120) { document.getElementById("f_"+goal).innerHTML = "Muy Intensa";}} if (x>=120) {if (x<=130) { document.getElementById("f_"+goal).innerHTML = "Extrema";}} var propy = 'rotate('+ y + 'deg)'; document.getElementById( goal +"_y").style.MozTransform = propy; document.getElementById( goal +"_y").style.WebkitTransform = propy; document.getElementById( goal +"_y").style.OTransform = propy; document.getElementById( goal +"_y").style.msTransform = propy; document.getElementById( goal +"_y").style.transform = propy; if (y>=-130) {if (y<-120) { document.getElementById("p_"+goal).innerHTML = "Alta"}} if (y>=-120) {if (y<-90) { document.getElementById("p_"+goal).innerHTML = "Moderada";}} if (y>=-90) {if (y<-60) { document.getElementById("p"+goal).innerHTML = "Baja";}} if (y>=-60) {if (y<-30) { document.getElementById("p_"+goal).innerHTML = "Débil";}} if (y>=-30) {if (y<0) { document.getElementById("p_"+goal).innerHTML = "Nula";}} if (y>=0) {if (y<30) { document.getElementById("p_"+goal).innerHTML = "Nula";}} if (y>=30) {if (y<60) { document.getElementById("p_"+goal).innerHTML = "Débil";}} if (y>=60) {if (y<90) { document.getElementById("p_"+goal).innerHTML = "Baja";}} if (y>=90) {if (y<120) { document.getElementById("p_"+goal).innerHTML = "Moderada";}} if (y>=120) {if (y<=130) { document.getElementById("p_"+goal).innerHTML = "Alta";}} var propz = 'rotate('+ z + 'deg)'; document.getElementById(goal+"_z").style.MozTransform = propz; document.getElementById(goal+"_z").style.WebkitTransform = propz; document.getElementById(goal+"_z").style.OTransform = propz; document.getElementById(goal+"_z").style.msTransform = propz; document.getElementById(goal+"_z").style.transform = propz; if (z>=-130) {if (z<-120) { document.getElementById("z_"+goal).innerHTML = "Muy bajista";}} if (z>=-120) {if (z<-90) { document.getElementById("z_"+goal).innerHTML = "Bajista";}} if (z>=-90) {if (z<-60) { document.getElementById("z_"+goal).innerHTML = "Moderadamente bajista";}} if (z>=-60) {if (z<-30) { document.getElementById("z_"+goal).innerHTML = "Levemente bajista";}} if (z>=-30) {if (z<0) { document.getElementById("z_"+goal).innerHTML = "Neutral";}} if (z>=0) {if (z<30) { document.getElementById("z_"+goal).innerHTML = "Neutral";}} if (z>=30) {if (z<60) { document.getElementById("z_"+goal).innerHTML = "Levemente alcista";}} if (z>=60) {if (z<90) { document.getElementById("z_"+goal).innerHTML = "Moderadamente alcista";}} if (z>=90) {if (z<120) { document.getElementById("z_"+goal).innerHTML = "Alcista";}} if (z>=120) {if (z<=130) { document.getElementById("z_"+goal).innerHTML = "Muy alcista";}} document.getElementById("s_"+goal).innerHTML = s; document.getElementById("r_"+goal).innerHTML = r; document.getElementById("cc_"+goal).innerHTML = cc; document.getElementById("cl_"+goal).innerHTML = cl; } put('ZCN2'); put('ZWN2'); put('ZSN2'); put('ZMN2'); put('ZON2'); put('LEM2'); put('HEM2'); put('GFQ2'); put('EURUSD'); } ); }