Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/01/2009, 04:16
dark_nexus
 
Fecha de Ingreso: octubre-2007
Ubicación: Berlin
Mensajes: 51
Antigüedad: 16 años, 5 meses
Puntos: 1
Respuesta: Cargar una web en un iframe

no entendi muy bien .. pero creo que tienens que usar ajax para hacer eso...
http://www.subgurim.net/Articulos/ajax-y-javascript/54/ajax-a-pelo-xmlhttprequest.aspx

si no estoy mal.. concretamente en esta funcion puedes hacer lo que quieres
function recogeInfo()
{
if(xmlHttp.readyState == 4 && xmlHttp.status == 200)
{
alert(xmlHttp.responseText);
}
}

que es cuando la pagina se carga dentro del div o lo que uses :P