Posted - 08/07/2024 : 16:10:42
Hi Terry,
I'm no expert here but I use something a bit different on one of my websites that prevents anything on the page from being copied/downloaded by locking out the "Right Click" feature.
It's really easy to implement. This may or may not be what you want but I thought I'd just throw it out there.
Place the following at the top of your <body> tag on each page you want to protect:
<body oncontextmenu="return false;" >
Basically you will insert oncontextmenu="return false;" inside the Body tag as shown above.
Once implemented the right click feature doesn't work.
Someone with savvy computer skills can override that but 99% of people won't know how to do it.
Just my opinion. Maybe it will help, maybe not.
Patrick
|