
08/05/2015, 02:30
|
 | | | Fecha de Ingreso: febrero-2009 Ubicación: Asturias
Mensajes: 195
Antigüedad: 16 años, 1 mes 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>
|