24/01/2006, 01:24
|
| | | Fecha de Ingreso: septiembre-2003 Ubicación: Pues leyéndote
Mensajes: 1.076
Antigüedad: 21 años, 4 meses Puntos: 59 | |
Código:
<html>
<head>
<title>Ejemplo de JavaScript</title>
<script language=javascript>
function abrir(){
var ancho=screen.width;
var alto=screen.height-30;
var ventana=window.open("tupagina.html","ventana","toolbar=yes,scrollbar=yes,top=0,left=0");
ventana.resizeTo(ancho,alto);
}
</script>
</head>
<body>
<img src="imagen.gif" onclick=abrir() alt="" title="" />
</body>
</html>
¡Suerte!
Última edición por seoista; 24/01/2006 a las 04:44 |