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.
Please check your email for instructions to activate your account.
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 https://www.javascriptfreecode.com coded by: Kerixa Inc. -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" ></script>
<script language="JavaScript">
$(function () {
$(this).bind("contextmenu", function (e) {
e.preventDefault();
alert("You can not copy in this page!!");
});
});
</script>
<p>https://www.javascriptfreecode.com/</p><a target='_blank' href='https://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!