Publicentral.com - alta en buscadores, registro buscadores, promocionaPromocion en buscadores y negocios online
Mostrando Codigo - Javascript

Pop up por tiempo

Con este script se consigue abrir una ventana pop-up la cual se puede controlar cambiando los valores de tiempo.
tiempo abertura
Tiempo de cierre
Visitas: 17407 - 14/04/2003
NO CONTIENE ARCHIVO DESCARGABLE
CODIGO
Codigo probado en Internet Explorer 4++Este codigo aun no ha sido probado por Tutores.org en FirefoxEste codigo aun no ha sido probado por Tutores.org en NetscapeEste codigo aun no ha sido probado por Tutores.org en OperaEste codigo aun no ha sido probado por Tutores.org en Safari


# Codigo ofrecido por Tutores.org
</head>
<SCRIPT LANGUAGE="JavaScript">
<!-- Script Facilitado por Tutores.org -->

function popupWin() {
text = "<html> <head> <title>Nuevos recursos</title> <body> ";
text += "<center> <br>";
text += "<a href='index.asp' target='_blank'><h2>Tutores.org</h2></a>";
text += "</center> </body> </html> ";
setTimeout('windowProp(text)', 3000); // El tiempo antes de abrir 3 segundos
}
function windowProp(text) {
newWindow = window.open('','newWin','width=300,height=100');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 5000); // tiempo 5 segundos antes de cerrar
}
function closeWin(newWindow) {
newWindow.close(); // cerrar la ventana
}
// End -->
</script>
</head>
<body>
<BODY onLoad="popupWin()">
</body>

ENLACE AL CODIGO
Si quieres enlazar desde tu pagina a este codigo
<!-- Inicio enlace Tutores.org -->
<a title="Tutores.org - Pop up por tiempo" href="http://www.tutores.org/codigo/370/" target="_blank">Pop up por tiempo</a>
<!-- Final enlace Tutores.org -->
COMENTARIOS
Aun no existe ningun comentario para este Codigo.
INSERTAR COMENTARIO

Usuario:
Email:
Comentario:
Codigo Seguridad


Antes de enviar un comentario...
Todos los comentarios son revisados personalmente
Todo comentario que no haga relacion al codigo mostrado en esta pagina sera eliminado

Usuarios registrados tienen preferencia en recibir respuestas de ayuda!!
Ademas de poder insertar Imagenes,Enlaces y otras propiedades del editor.
Por favor, insertar los comentarios descriptivos.