 
			
				13/06/2007, 01:28
			
			
			     |  
      |    |    |    Fecha de Ingreso: diciembre-2006  
						Mensajes: 28
					  Antigüedad: 18 años, 10 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 
}           |