How to restrict the user to use right-click

 Posted by Kmandapalli on 2/21/2014 | Category: JavaScript Interview questions | Views: 2099 | Points: 40
Answer:

<!-- this script got from www.javascriptfreecode.com-Coded by: Krishna Eydat -->
<SCRIPT LANGUAGE="JavaScript">
var message="Function Disabled!";

function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(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=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>
<font face="Tahoma"><a target="_blank" href="http://www.dotnetfunda.com/"><span style="font-size: 8pt; text-decoration: none">DotNet Funda</span></a></font>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response