15/12/2007, 07:48
|
| | | Fecha de Ingreso: noviembre-2007 Ubicación: Knocking the Death Door..
Mensajes: 368
Antigüedad: 17 años, 2 meses Puntos: 3 | |
Re: Cómo abrir ventana sin barra de menú, y que esté maximizada... Aqui esta y para la proxima busca en Google que nadie te hara el trabajo siempre.. busca que el que busca encuentra.. aunque sea un dolor de cabeza..
<html>
<head>
<script type="text/javascript">
function disp_alert()
{
window.open("www.google.com",null,"height=200,widt h=400,status=yes,toolbar=no,menubar=no,location=no ");
}
</script>
</head>
<body>
<input type="button" onclick="disp_alert()" value="Display alert box" />
</body>
</html> |