It's free and you have access to premium codes!
Welcome back! Please login to your account.
Don't worry, we'll send you a message to help you to recover your acount.
Written by 21 August 2012
To prevent copying of texts and information in a webpage, you can use a code that does not allow the users to copy the text with a right-click. Below we have provided this code for you by which you can prevent your website content being copied. In this code, by right-clicking on the screen, an alert dialog is displayed and warns that you can not copy to this page.
<!-- this script is provided by www.javascriptfreecode.com coded by: Kerixa Inc. -->
<!-- Right Click - Prevent Script
Use this link to help prevent users from stealing your code !-->
<script language="JavaScript">
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Please don't steal my stuff!!!");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
</script>
<a target='_blank' href='www.javascriptfreecode.com' style='font-size: 8pt; text-decoration: none'>JavaScript Best Codes</a>
Comments
Here you can leave us commments. Let us know what you think about this code tutorial!