Javascriptler bakn indirin:
Block IP address script (ing):İstediğimiz IP numaralarını yasaklamanızı sağlayan bir JS kodu.
<script type="text/javascript">
// Block IP address script- By JavaScriptKit.com (
http://www.javascriptkit.com)
// For this and over 400+ free scripts, visit JavaScript Kit-
http://www.javascriptkit.com/// This notice must stay intact for use.
//Enter list of banned ips, each separated with a comma:
var bannedips=["23.23.23.23", "11.11.11.11"]
var ip = '<!--#echo var="REMOTE_ADDR"-->'
var handleips=bannedips.join("|")
handleips=new RegExp(handleips, "i")
if (ip.search(handleips)!=-1){
alert("Your IP has been banned from this site. Redirecting...")
window.location.replace("
http://www.google.com")
}
</script>
----------------------------------------------------------------------------------------------
Name Prompter (ing)Ziyaretçileriniz sayfanıza girdiğinde karşılarına bir komut satırı çıkar ve bu alana ziyaretçileriniz isimlerini girerek sayfa içerisinde girdikleri isim ile kendilerine hitap edilmesini sağlayabilirsiniz.
----------------------------------------------------------------------------------------------
Animated link box (ing)
Form kutusu içerisinde site isimlerini ve butona tıklandıklarında ilgili adrese gidilmesini sağlayan bir form uygulaması. Ayrıca butona tıklandığında seçilen seçenek yanıp sönmeye başlıyor.
<form name="take" >
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><select name="take2" size="5" style="width:200px">
<option selected value="
http://www.dynamicdrive.com">Dynamic Drive</option>
<option value="
http://www.freewarejava.com">Freewarejava.com</option>
<option value="
http://www.brainjar.com">BrainJar</option>
<option value="
http://www.javascriptkit.com">JavaScript Kit</option>
<option value="
http://freewarejava.com/cgi-bin/Ultimate.cgi">JK Help Forum</option>
<option value="
http://www.news.com">News.com</option>
</select>
<script>
<!--
//Animated Link Box script- By JavaScript Kit
//(
http://www.javascriptkit.com)
//Credit must stay intact for use
//specify # of frames for animation (integer above 2)
var setframes=6
/////no need to edit below here///////////
var selected=-1
var switchit=-1
var cycle=0
function animate_go(){
if (cycle>=setframes){
document.take.take2.selectedIndex =selected
window.location=document.take.take2.options[document.take.take2.selectedIndex].value
return
}
switchit=(switchit==-1)? selected : -1
document.take.take2.selectedIndex =switchit
cycle++
setTimeout("animate_go()",100)
}
//-->
</script>
</td>
</tr>
<tr>
<td width="100%"><div align="center"><p><input type="button"
value="Go there>>" name="B1" onClick="selected=document.take.take2.selectedIndex;cycle=0;animate_go()"></div></td>
</tr>
</table>
</form>
<p align="center"><font face="arial" size="-2">This free script provided by</font>
<font face="arial, helvetica" size="-2">
JavaScript
Kit</font></p>