If you want to prevent a reader to right click on a photo you own and download it here you have a simple trick.
On your post you have to add the following code
Here you have an example:
In case you want, you can add an optional message as an alert
On your post you have to add the following code
onContextMenu="return false;"
before finishing the HTML tag <img>
Here you have an example:
<img src="yourImageFileSource.gif" height="100" width="100" onContextMenu="return false;" />
In case you want, you can add an optional message as an alert
<img src="yourImageFileSource.gif" height="100" width="100" onContextMenu="alert('This is the optional message');return false;" />
Comments
Post a Comment