Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/06/2009, 11:27
ind4rk
 
Fecha de Ingreso: febrero-2009
Mensajes: 17
Antigüedad: 15 años, 10 meses
Puntos: 0
Respuesta: Bloquear pagina

Un ejemplo corto rapido y sucio

Código:
<html >
<head>
    <title>Página sin título</title>
</head>
<style type="text/css" media="all">
#Container
{
    width:98%;
    height: 600px;
    cursor:wait;
    position:absolute;
    top:0px;
    left:0px;
}
</style>
<body>
<div id="Container"></div>
<input id="Button1" type="button" value="button"/>
</body>
</html>