Best books about Javasript
|
JavaScript Prevent Copy
This
example works well in Internet Exploerer. This file prevent copying
the web page.
How
to do it?
Add the following code to your <body> tag.
<body ONDRAGSTART="window.event.returnValue=false" ONCONTEXTMENU="window.event.returnValue=false" onSelectStart="event.returnValue=false">
|
|