No Need for Sanity! | home
This is for all of you who have been looking for good HTML sites!
Funky Chickens-This is a great place to start they put it in plan english
Make A Profile-This is for AOL users to make your profile bigger and better!
Rave with me-This place is pimp its a mini flash player all you do is copy and paste the code to your page!
This HTML code is a page protecter so when someone right click on your page to steal a picture or something you dont want them to have. Just add this code and TADA they cant get it!
Copy and Paste this to your page
-------------------------------------------------------------------------------------------------------------------------------------------------------
<SCRIPT>
<!--
/**************************************************
Right-Click Disabler
Created by Howard Chen
Get more JavaScripts at http://start.at/javascripts/
Bugs report to [email protected]
This script is free as long as the credits above are kept
**************************************************/
function BrowserCheck() {
var b = navigator.appName
if (b=="Netscape") this.b = "ns"
else if (b=="Microsoft Internet Explorer") this.b = "ie"
else this.b = b
this.version = navigator.appVersion
this.v = parseInt(this.version)
this.ns = (this.b=="ns" && this.v>=4)
this.ns4 = (this.b=="ns" && this.v==4)
this.ns5 = (this.b=="ns" && this.v==5)
this.ie = (this.b=="ie" && this.v>=4)
this.ie4 = (this.version.indexOf('MSIE 4')>0)
this.ie5 = (this.version.indexOf('MSIE 5')>0)
this.min = (this.ns||this.ie)
}
is = new BrowserCheck()
document.onmousedown = mouseDown
if (is.ns) document.captureEvents(Event.MOUSEDOWN)
function mouseDown(e) {
if ((is.ns && e.which == 1) || (is.ie && event.button == 1)) {
}
else {
if (is.ie) alert("You Want WHAT!!!!!!!!!!!!!!!")
else if (is.ns) setTimeout('alert("I THINK NOT!!")',50)
}
}
//-->
</SCRIPT>
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||