C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |



My Profile

Gifts

Active Members
TodayLast 7 Days more...







Disable Print screen,Right Click using javascript


Posted Date: 19 Jul 2008      Total Responses: 2

Posted By: suresh       Member Level: Silver     Points: 1


Hi :
Can any one send me Javascript code to disable Print screen, Right Click.Its very urgent




Responses

Author: Kumar Velu    19 Jul 2008Member Level: DiamondRating:     Points: 6
hi,

You can protect your webpage from being copied or hide your source code for some reason to internet users by disabling the right click button of the mouse. You can disable the right click using the following java script code. It works for both firefox and internet explorer. Just copy and paste inside the “body” tag;


<script language="JavaScript">
<!--

var message="";
///////////////////////////////////
function clickIE()

{if (document.all)
{(message);return false;}}

function clickNS(e) {
if
(document.layers||(document.getElementById&&!document.all))
{
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else
{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>




Author: shanmukha kumari    21 Jul 2008Member Level: GoldRating:     Points: 6
<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>



Post Reply
You must Sign In to post a response.
Next : ASP.NET WEBSITE ALIGNMENT WHILE USING JAVASCRIPT
Previous : Disable right click
Return to Discussion Forum
Post New Message
Category: JavaScript

Related Messages



dotNet Slackers   BizTalk Adaptors    Web Design

web conferencing

Contact Us    Privacy Policy    Terms Of Use