El codigo es el siguiente:
Cita:
El problema es que si pongo un alert tras el http_resp.onreadystatechange=clasificar; ya no me sale el error i me va bien. Alguien sabe a que se puede deberÇ???funcion1:
http_resp.open("POST", "proc/clasificar.php", true);
http_resp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
http_resp.send("opt="+opt+"&nocache="+Math.random( ));
http_resp.onreadystatechange = clasificar;
funcion clasificar
if (http_resp.readyState==4){
if (http_resp.status == 200){
aquí seguiria la funcion xo el error me lo da en el primer if.
http_resp.open("POST", "proc/clasificar.php", true);
http_resp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
http_resp.send("opt="+opt+"&nocache="+Math.random( ));
http_resp.onreadystatechange = clasificar;
funcion clasificar
if (http_resp.readyState==4){
if (http_resp.status == 200){
aquí seguiria la funcion xo el error me lo da en el primer if.
Gracias