Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> </head> <body> <h2>Copier et coller désactivés</h2> <p>Je suis un texte et vous ne pouvez pas me copier ou me couper.</p> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $("body").bind("cut copy", function (e) { e.preventDefault(); }); }); </script> </body> </html>