How to disable copy content function using jquery?
To disable cut, copy and paste of a content in jQuery, use the jQuery bind() function.
1. Code:
<!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>
2. Example:
Run the program to get the result.