Código:
Cuando pulso un botón determinado el div CENTRO cambia de contenido. Pues bien, me gustaría hacer lo mismo con otro div de la página llamado LATERAL, ¿cómo podría implementarlo en el código? Estoy un poco pegada con ajax. Muchas gracias.<script> function nuevoAjax(){ 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 Cargar(url){ var CENTRO = document.getElementById('CENTRO'); ajax=nuevoAjax(); ajax.open("GET", url,true); ajax.onreadystatechange=function(){ if(ajax.readyState==4){ CENTRO.innerHTML=ajax.responseText; } } ajax.send(null); } </script>
EDITO: He repetido dos veces el código y funciona, no sé si lo habré hecho mal. Que alguien me diga, graciass.