Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/06/2009, 06:22
manoloOZ
 
Fecha de Ingreso: octubre-2008
Mensajes: 151
Antigüedad: 16 años, 1 mes
Puntos: 1
Exclamación Problema con fire fox

mi problema es que en fire fox ajax no me hace nada, ni me tira error. No creo que sea la creacion del objeto porq uso la que esta en todos lados.

mi codigo es este:
Código:
function objetoAjax(){

var xmlhttp=false;

try {


xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");

} catch (e) {

try {

xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");

} catch (E) {

xmlhttp = false;

}


}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {

  xmlhttp = new XMLHttpRequest();

  }

  return xmlhttp;

  }
  
  function mostrar_albumes()
{
	ajax=objetoAjax();

  //uso del medotod POST

  //archivo que realizará la operacion

  //registro.php

var resul = document.getElementById("contenedor_albums");
  ajax.open("POST", "mostrar_albumes.php",true);

  ajax.onreadystatechange=function() {

  if (ajax.readyState==4) {

  //mostrar resultados en esta capa

resul.innerHTML = ajax.responseText;




  }