08/01/2009, 04:16
|
| | Fecha de Ingreso: octubre-2007 Ubicación: Berlin
Mensajes: 51
Antigüedad: 17 años, 2 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 |