javascripts
Ventana de alerta en tu web con un mensaje
Codigo
Mensaje de alerta mediante un boton
Ejemplo:
codigo
<form><input name="button2" type="button" onclick='alert("Aqui el mesaje de alerta!")' value="Nombre del boton" /> </form>
Bloquear IP's
- Solo pon las ip's donde dice "22.22.22.22" y "11.11.11.11". Si quieres agregar más solo ponlas entre comillas "" y en la misma linea.
Codigo:
<script type="text/javascript"> var bannedips=["22.22.22.22", "11.11.11.11"] // IP'S bloquedas si agregas más ponlas entre comillas "" var ip = '190.165.132.154' var handleips=bannedips.join("|") handleips=new RegExp(handleips, "i") if (ip.search(handleips)!=-1){ alert("Tu IP ha sido baneada de este sitio web. Redireccionando...") window.location.replace("http://www.google.com")} // Pagina que llevaras al user bloqueado </script>
Bloquear boton derecho
Codigo:
<script type="text/javascript"> function IE(e) { if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3")) { return false; } } function NS(e) { if (document.layers || (document.getElementById && !document.all)) { if (e.which == "2" || e.which == "3") { return false; } } } document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false"); </script>
Bloquear boton derecho mas mensaje de alerta
Codigo:
<script type="text/javascript"> function IE(e) { if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3")) { alert('Mensaje que aparece al hacer click derecho!'); return false; } } function NS(e) { if (document.layers || (document.getElementById && !document.all)) { if (e.which == "2" || e.which == "3") { alert('Boton bloqueado'); return false; } } } document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false"); </script>
Raspar imagen para poder verla
- Para usar este code deben poner una imagen donde dice "URL DE IMAGEN" luego pegan el codigo donde quieran que aparesca.
Codigo:
<script language="Javascript"> image_width = ANCHODEIMAGEN; image_heigth = ALTODEIMAGEN; function scratch() { for(i = 0; i < (image_heigth/5); i++) { for(j = 0; j < (image_width/5); j++) { document.write("<img src='URL DE IMAGEN' style='position:absolute;top:"+(i*5)+";left:"+(j*5)+";width:5;height:5;cursor:hand;' onmouseover='this.style.visibility="hidden";' onmouseout='this.style.visibility="hidden";'>") } } } </script> <script language="Javascript"> document.write('<div style="position:relative;width:'+image_width+';height:'+image_heigth+'">'); document.write('<img src="URL DE IMAGEN" />') scratch(); document.write('</div>'); </script>
Cambiar imagen al darle click
Ejemplo:
Codigo:
<script language="javascript"> imagen1=new Image imagen1.src="ejjs2.png" imagen2=new Image imagen2.src="ejjs1.png" var i=1; function cambiar() { if (i == 1) { document.images['ejemplo'].src=imagen2.src i=2; } else { document.images['ejemplo'].src=imagen1.src; i=1; } } </script><img src="ejjs1.png" name="ejemplo" onMousedown="cambiar()"">
No dejar entrar a menores de edad a tu sitio web
Sitio contenido solo para mayores de edad este codigo te servida porque le pregunta la edad al visitante y si es menor de edad lo redireciona a la web que tu elijas.
Codigo:
<script language="javascript"> var agePrompt=prompt("¿Cuál es tu edad?"); if (agePrompt>=18) alert('Eres mayor de edad. Tienes permiso para entrar al sitio') else { alert('Eres menor de edad. No puedes entrar') document.location="Aqui pon el sitio al que mandaras a los menores de edad"; } </script>
Codigo Imprimir
Codigo
<a href="javascript:print()">Imprimir</a>
Calendario
Ejemplo:
Codigo
<script languaje="JavaScript"> mesarray=new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio","Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"); diaarray=new Array( "Domingo","Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"); hoy = new Date(); dias = hoy.getDate(); dia = hoy.getDay(); mes = hoy.getMonth(); mes=mesarray[mes]; dia =diaarray[dia]; anno = hoy.getYear(); if (anno <200) anno = anno+1900; document.write('<TABLE WIDTH="60" height="60" BORDER="1" BGCOLOR="#FFFFFF"><TR><TD><CENTER>'); document.write('<FONT SIZE="2" COLOR="#000000"> <B>'+mes+'</B></FONT><br>'); document.write('<FONT SIZE="1" COLOR="#000000">'+anno+'</FONT><br>'); document.write('<FONT SIZE="4" COLOR="#000000" FACE="Arial"><B>'+dias+'</B></FONT><br>'); document.write('<FONT SIZE="1" COLOR="#000000">'+dia+'</FONT><br>'); document.write('</CENTER></TR></TD></TABLE>'); </script>
No dejar selecionar el texto de tu web
Codigo:
<script language="Javascript"> function disableselect(e){ return false } function reEnable(){ return true } document.onselectstart=new Function ("return false") if (window.sidebar){ document.onmousedown=disableselect document.onclick=reEnable } </script>
Opcion de agregar a favoritos tu pagina
Codigo:
<a href="javascript:window.external.AddFavorite('AQUI LA URL DE TU WEB', '')">Agregar a favoritos</a>