<script type='text/javascript'>
//<![CDATA[
msg = "UR WELCOME MSG HERE";
msg = "***Your Short Description Here***" + msg;pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos); pos++;
if (pos > msg.length) pos = 0
window.setTimeout("scrollMSG()",200);
}
scrollMSG();
//]]>
</script>
Saturday, August 20, 2011
Disable Right Click
<script>
function disableRight()
{
if(event.button==2)
{
alert("Right Click Not Allowed!");
return false;
}
}
document.onmousedown=disableRight;
</script>
Disable Copy Paste Code
<!-- Disable Copy and Paste-->
<script language='JavaScript1.2'>
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>
<script language='JavaScript1.2'>
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>
Subscribe to:
Posts (Atom)