Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/11/2012, 11:19
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses
Puntos: 1567
Respuesta: ocultar iframe en internet explorer

Si la idea es ocultar el iframe, porque algo tan complicado?
hacés esto

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. </head>
  7. <p><button onclick="document.getElementById('ifr').style.display = 'none';">Ocultar</button><br /></p>
  8. <iframe src="http://emprear.com" id="ifr" width="100" height="100"></iframe>
  9. </body>
  10. </html>

Además te alcaro que la etiqueta <iframe> lleva un cierre explicito

Código HTML:
Ver original
  1. <iframe name="zona" id="zona" class="iFram">Contenido alternativo</iframe>


Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.

Última edición por emprear; 30/11/2012 a las 06:55