![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
16/09/2006, 21:56
|
| | Fecha de Ingreso: septiembre-2006
Mensajes: 1
Antigüedad: 18 años, 5 meses Puntos: 0 | |
Mostrar html Dinamico en la misma pagina function include_dinamico (url)
{
//Se utiliza IFRame tiene funciones limitadas con respecto a los frames
var mostrarphp= "<IFRAME iframe name='tuPAgina.htm' frameborder='0' scrolling='auto' align=center src='' width='100%' height='160%'></IFRAME>";
document.getElementById('include').innerHTML = "";
if (url!=""){
document.getElementById('include').innerHTML = mostrarphp;
}
}
// logicamente debes tener un div llamado include para que poder manejar la el espacio en la pagina
// <div id="include"></div> |