How To Disable Cut, Copy And Paste Using Jquery ?
Hi Dev,
In this blog, We will discuss you disable cut, copy and paste using jquery. disable whole page in cut copy paste and perticuler part in disbale cut copy and paste using jquery.
You can disable the whole page or particular part of the page. here this example,we use to bind an event to disable cut, copy and paste.
Example : Disable in Whole Page
<!DOCTYPE html>
<html>
<head>
<title>How To Disable Cut, Copy And Paste Using Jquery ? - NiceSnippets.com</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</head>
<body>
<h3>How To Disable Cut, Copy And Paste Using Jquery ? - NiceSnippets.com</h3>
<p>disable fully page</p>
<script type="text/javascript">
$(document).ready(function () {
//Disable whole page
$(this).bind('cut copy paste', function (e) {
e.preventDefault();
});
});
</script>
</body>
</html>
Example : Disable in Perticuler Part
<!DOCTYPE html>
<html>
<head>
<title>How To Disable Cut, Copy And Paste Using Jquery ? - NiceSnippets.com</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</head>
<body>
<h3>How To Disable Cut, Copy And Paste Using Jquery ? - NiceSnippets.com</h3>
<p>disable p tag</p>
<script type="text/javascript">
$(document).ready(function () {
//Disable particular part of the page
$('p').bind('cut copy paste', function (e) {
e.preventDefault();
});
});
</script>
</body>
</html>
It will help you...
- How to Show Loading Spinner in JQuery?
- How to Create Ajax Submit Form Using jQuery?
- How To Get Current Page URL, Path, Host and hash using jQuery?
- How To Get, Set and Delete Div Background Image jQuery?
- JQuery Remove All Unwanted Whitespace From String Example
- Body Background Video Using Vide Jquery Example
- JQuery UI Autocomplete Example
- JQuery Split String By Comma Into Array Example