El siguiente ejemplo, el onreadystatechange salta correctamente en IE7 y safari pero no en firefox. Alguien puede decirme que hago mal?
Muchisimas gracias por adelantado.
var oXmlHttp = new XMLHttpRequest();
oXmlHttp.open("get", url_txt, false );
oXmlHttp.onreadystatechange = function() {
// Este alert no salta en Firefox
alert("comprueba Estatus " + oXmlHttp.readyState);
};
alert('enviando');
oXmlHttp.send(null);