Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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 −
<!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> Advertisements
