Answers for "prevent copy and past html"

0

how to disable copying in HTML

<div oncopy="alert('Copying forbidden!');return false">
  Dear user,
  The copying is forbidden for you.
  If you know JS or HTML, then you can get everything from the page source though.
</div>
Posted by: Guest on January-14-2021
-1

javascript disable copy paste

<body oncopy="return false" oncut="return false" onpaste="return false">
Posted by: Guest on September-06-2020

Browse Popular Code Answers by Language