Buenas a todos.
Pongamos que tenemos esta página:
http://www.mipagina.com
Con el siguiente source:
<!DOCTYPE html>
<html>
<header>
<title>Mi Pagina</title>
</header>
<body>
<h1>Titulo</h1>
<h2>Subtitulo</h2>
Texto
</body>
</html>
Y quisiera omitir el subtítulo, es decir, que en el iFrame se viera así:
<!DOCTYPE html>
<html>
<header>
<title>Mi Pagina</title>
</header>
<body>
<h1>Titulo</h1>
Texto
</body>
</html>
¿Es posible?
La web no está dentro de mi dominio.
Gracias de antemano y un saludo!