Created
September 30, 2013 17:06
-
-
Save laicus/6766897 to your computer and use it in GitHub Desktop.
Ventana flotante con botón cerrar
From http://sinlevantar.blogspot.com/2012/08/ventana-flotante-con-boton-cerrar.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id='ventana-flotante'> | |
<a class='cerrar' href='javascript:void(0);' onclick='document.getElementById('ventana-flotante').className = 'oculto''>x</a> | |
<div id='contenedor'> | |
<div class='contenido'> | |
Aquí va el mensaje. | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment