Disable Right Click
iWebBuddy.com - Website Design and Web Development Forum :: Web Design and Development :: Tutorials :: Coding Tutorials
Page 1 of 1 • Share •
Disable Right Click
This tutorial will help you disable right clicking on your web pages,
Disable Right Click Script
This script will disable right clicking on your web pages.
When this is added, your visitors can not right click on your web page. This is like a silent version of disabling right clicking.
Pop Up Message After Right Click To Disable It
This script will disable right clicking on your web pages, and everytime you right click, a pop up message box will appear. Ofcourse, you can modify the text that will be displayed in the pop up box.
Script :
Find this part in the script, and edit the bold part, to edit the text that will be displayed in the pop up box.
Disable Right Click Script
This script will disable right clicking on your web pages.
- Code:
<body oncontextmenu="return false"</body>
When this is added, your visitors can not right click on your web page. This is like a silent version of disabling right clicking.
Pop Up Message After Right Click To Disable It
This script will disable right clicking on your web pages, and everytime you right click, a pop up message box will appear. Ofcourse, you can modify the text that will be displayed in the pop up box.
Script :
- Code:
<script language=Javascript1.2> function iPlan() {
alert('Text Here');
return(false);
}
document.oncontextmenu = iPlan;
</script>
Find this part in the script, and edit the bold part, to edit the text that will be displayed in the pop up box.
{ alert('Text Here');

Marc- Administrator

Posts: 1119
iCoins: 2197
Forum Pet:

Permissions of this forum:
You cannot reply to topics in this forum












