How to disable copy content function using jQuery?


To disable cut, copy and paste of a content in jQuery, use the jQuery bind() function.

Example

You can try to run the following code to disable copy paste of content using jQuery −

Live Demo

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $('#mytext').bind("cut copy paste",function(e) {
     e.preventDefault();
  });
});
</script>
</head>
<body>

<input type = "text" id="mytext">Copy, cut and paste function doesn't work here.

</body>
</html>

Updated on: 14-Feb-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements