Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/06/2007, 01:28
j0nys
 
Fecha de Ingreso: diciembre-2006
Mensajes: 28
Antigüedad: 17 años, 5 meses
Puntos: 0
Re: Problemas con ajax y IE

function cargarContenido(valor){
contenedor = document.getElementById(contenido);
ajax=nuevoAjax();
ajax.open("GET", "msubcat.php?indice="+valor,true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
contenedor.innerHTML = ajax.responseText
}