Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/10/2008, 01:09
Avatar de Raulmmmm
Raulmmmm
 
Fecha de Ingreso: marzo-2007
Ubicación: En otro lugar que tú
Mensajes: 1.549
Antigüedad: 17 años
Puntos: 36
Respuesta: Alerta tipo msn

Es fácil hacer una ventanita tipo MSN:
Pon esto en el <head>:
Código HTML:
<script>
function cerrar(){
document.getElementById('msn').style.display = 'none';
}
</script>
<style type="text/css">
#msn { position: fixed; bottom: 10; right: 10;}
</style> 
Y esto en el <body>:
Código HTML:
<div id="msn">
Ventana <a href="#" onclick="cerrar()">(X)</a>
</div> 

Última edición por Raulmmmm; 04/10/2008 a las 08:12