+ 1

How can i set image can not to download by orher people?

Make it with privacy.

29th Sep 2016, 11:27 AM
Reinhard Silaen
Reinhard Silaen - avatar
1 Answer
+ 4
You can use JavaScript to block a user from using the right mouse button. $('img').mousedown(function (e) { if(e.button == 2) { // right mouse button return false; // do not display the menu } } Protecting a image is impossible.
29th Sep 2016, 8:21 PM
Scotti
Scotti - avatar