Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/05/2015, 02:30
Avatar de DCienfuegos
DCienfuegos
 
Fecha de Ingreso: febrero-2009
Ubicación: Asturias
Mensajes: 195
Antigüedad: 15 años, 3 meses
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>