+ 1
How can i set image can not to download by orher people?
Make it with privacy.
1 Antwort
+ 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.