![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
08/05/2015, 02:30
|
![Avatar de DCienfuegos](http://static.forosdelweb.com/customavatars/avatar287430_1.gif) | | | Fecha de Ingreso: febrero-2009 Ubicación: Asturias
Mensajes: 195
Antigüedad: 16 años Puntos: 3 | |
Re: Cargar iframe al cliquear un enlace
Código:
<script type="text/javascript">
function mostrar(){
document.getElementById('oculto').style.display = 'block';}
</script>
<a onclick="mostrar()" class="button icon fa-arrow-circle-right">VER RESULTADO</a></p>
<div id='oculto' style='display:none;'>
<p>TU NOTA ES: <iframe name="resultado" src="numbers" height="25" width="100" SCROLLING="no"></iframe></p>
</div>
|