Actions
Acciones (Códigos)
Mensage al entrar y salir de la página
<BODY onLoad="alert('Bienvenido/a a mi web');" onUnLoad="confirm('Gracias por tu visita, espero que no sea la última');">
Botones de navegación (Pegalo como pegado especial en vista HTML)
<table border="0" bgcolor="#FFCC66">
<tr>
<td align="center">
<input type="button" value=" << " onclick="javascript:window.history.go(-1);">
<input type="button" value="Top" onclick="document.location='#top';">
<input type="button" value=" >> " onclick="javascript:window.history.go(1);"></td>
</tr>
</table>
<!-- End Navigation -->
Refrescar ventana
Insertar dentro del hipervínculo de texto o imagen.
javascript:window.location.reload()
Insertar dentro de la etiqueta "HEAD"
<META HTTP-EQUIV="REFRESH" CONTENT="2;URL=LA-DIRECCIÓN-DE-TU-WEB">
Mensage con botón derecho en varias lineas
Puedes editar el texto (Lo escrito)
<script language="JavaScript">
function right(e) {
if(navigator.appName=='Netscape'&&(e.which==3||e.which==2))
return false;
else if(navigator.appName=='Microsoft Internet Explorer'&&(event.button==2||event.button==3)) {
warning =
" !!! Bienvenido !!!n" +
"____________________n" +
"n" +
"Este es un ejemplo n" +
"de mensaje con varias n" +
"líneas de texto. n" +
"n" +
"puedes comentar n" +
"o insertar una serie de normas n" +
"Es muy útil para tu web n" +
"n" +
"Saludos de Game Zone n" +
"a todos/as los visitantes n" +
"y colaboradores. n" +
"n" +
"Vuelve cada vez que quieras. n" +
"n" +
" Game Zone de http://www.territory-game.es.tl. n" +
"n" +
"____________________n"
var agree = confirm(warning);
return false; }
return true;}
document.onmousedown=right;
document.onmousemove=right;
</script>
Mensage de carga
Copia y pega el código entre las etiquetas <head> y </head>
<script language="JavaScript">
<!--
ns=document.layers
ie=document.all
function esconde() {
if (ie) precarga.style.visibility="hidden";
if (ns) document.precarga.visibility="hide";
}
// -->
</script>
<style>
#precarga{position:absolute; width:100%; height:100%; top:300; left:50}
</style>
Sustituye el primer <boby> por este código HTML
<body onLoad="esconde();">
<script language="JavaScript">
if(ie || ns) document.write('<div id="precarga" align="center"><br>Esperen a que termine de cargar la página, por favor...</div>');
</script>
Actualización a cada 10 segundos
Inserta el código como HTML
<body onLoad="setTimeout('self.location.reload()', 10000)">
Mensage de bienvenida. (En Game Zone en el inicio está el ejemplo)
Código, insertalo en HTML
<SCRIPT LANGUAGE="LiveScript">
function checkAGE()
{
if (!confirm ("AQUÍ VA TÚ MENSAGE")
) history.go(-2);
return " "
}
document.writeln(checkAGE())
</SCRIPT>
Enviar página a un amigo
Insertar dentro del <head> vista HTML
<script language="javascript">
//www.territory-game.es.tl
function EnviaPagina() {
CadenaMail = "mailto:?subject=" + document.title
CadenaMail += "&body=Un amigo te recomienda esta página: " + document.title
CadenaMail += ". Para acceder a ella, sigue este enlace " + location.href
location.href = CadenaMail
}
</script>
Pégalo como Pegado especial como html en vista normal
<!-- Enlace de enviar pagina -->
<A HREF="javascript:EnviaPagina()">Envía esta página</A>
((((Aquí se inserta la frase del vínculo))))
Caja de búsqueda
Pegalo como pegado especial en vista HTML
<!-- Copiar dentro del tag BODY -->
<script language="JavaScript">
// By Mike Hall (MHall75819@aol.com)
var NS4 = (document.layers);
var IE4 = (document.all);
var win = window; // Con frames usar top.nombre.window;
var n = 0;
function findInPage(str) {
var txt, i, found;
if (str == "")
return false;
// Find next occurance of the given string on the page, wrap around to the
// start of the page if necessary.
if (NS4) {
// Look for match starting at the current point. If not found, rewind
// back to the first match.
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
// If not found in either direction, give message.
if (n == 0)
alert("Not found.");
}
if (IE4) {
txt = win.document.body.createTextRange();
// Find the nth match from the top of the page.
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
txt.moveStart("character", 1);
txt.moveEnd("textedit");
}
// If found, mark it and scroll it into view.
if (found) {
txt.moveStart("character", -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
// Otherwise, start over at the top of the page and find first match.
else {
if (n > 0) {
n = 0;
findInPage(str);
}
// Not found anywhere, give message.
else
alert("Not found.");
}
}
return false;
}
</script>
<form name="search" onSubmit="return findInPage(this.string.value);">
<font size="2"><p></font><font size="3"><input name="string" type="text" size="15"
onChange="n = 0;"></font> <input type="submit" value="Buscar"> </p>
</form>
Quitar Frame
Pegalo como pegado especial en vista HTML donde quieras.
<!-- Copiar dentro del tag BODY -->
<script LANGUAGE="JavaScript">
function quitarFrame()
{
if (self.parent.frames.length != 0)
self.parent.location=document.location.href;
}
quitarFrame()
</script>
Bloquear botón derecho del ratón y deshabilitar teclado
<script language="JavaScript">
function click() {
if (event.button==2) {
alert('Ejemplo de mensaje YoMaster.com');
}
}
function keypresed() {
alert('Teclado Desabilitado');
}
document.onkeydown=keypresed;
document.onmousedown=click;
</script>
,