Skip to content
2
2 produse in cos.
$(document).ready(function() {
$('body img').on('dragstart', function(e) {
return false;
});
$('body').on('contextmenu', 'img', function(e){
e.preventDefault();
//return false; /* this returns nothing */
alert('no');
});
});