Tema: doble capa
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/10/2010, 06:46
Avatar de kaninox
kaninox
 
Fecha de Ingreso: septiembre-2005
Ubicación: In my House
Mensajes: 3.597
Antigüedad: 19 años, 2 meses
Puntos: 49
doble capa

buenas muchachos les comento que tengo un ajax que trabaja bien al hacer click en un link me abre lo que quiero en otra capa etc. el problema es que necesito actualizar dos capas con diferentes cosas digo al hacer

<span id="menu" onclick="MICAPA('miweb.php');">LINK</span>
este me abra dos paginas con diferentes contenidos.

mi ajax hace.

Código Javascript:
Ver original
  1. function nuevoAjax(){
  2.     var xmlhttp=false;
  3.      try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); }
  4.     catch (e) {
  5.          try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");    }
  6.         catch (E) { xmlhttp = false; }
  7.       }
  8.     if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp = new XMLHttpRequest(); }
  9.     return xmlhttp;
  10. }
  11. function accionado() {
  12.     var capa = document.getElementById('CAPA_OPEN');
  13.     if (ajax.readyState==1) { capa.innerHTML = '<img src="js/load.gif" border="0" alt="Load..." title="Load...">'; }
  14.     else if ((ajax.readyState == 4) && (ajax.status == 200)) { capa.innerHTML =ajax.responseText; }
  15. }
  16. function MICAPA(dest) {
  17.     ajax = nuevoAjax();
  18.     ajax.onreadystatechange = accionado;
  19.     ajax.open("GET", dest,true);
  20.     ajax.send(null);
  21. }

y abre en <div id="CAPA_OPEN"></div>
miweb.php

entonces como podria abrir 2 paginas una en cada capa?
espero se entienda,
__________________
Gokuh Salvo al mundo. PUNTO!!!!