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