Disable Right Click Using Java Script
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function disableRightClick() {
alert("Sorry, right click is not allowed !!");
return false;
}
</script>
</head>
<body oncontextmenu=" return disableRightClick();">
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function disableRightClick() {
alert("Sorry, right click is not allowed !!");
return false;
}
</script>
</head>
<body oncontextmenu=" return disableRightClick();">
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
No comments:
Post a Comment