Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/08/2008, 13:45
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Respuesta: Recoger dato iframe

Código PHP:
documentIframe1=document.getElementById('idFrame1').contentDocument || document.getElementById('idFrame1').contentWindow.document;
documentIframe2=document.getElementById('idFrame2').contentDocument || document.getElementById('idFrame2').contentWindow.document;
//referencia al select en iframe 1:
selectIframe1=documentIframe1.getElementById('idSelect');
//valor select en iframe 1:
valordelselect=selectIframe1.value;
//escribirlo en el body del iframe 2:
documentIframe2.getElementsByTagName('body')[0].innerHTML=valordelselect