Skip to content
Afectiuni Neurologice
Home/Afectiuni Neurologice
0
Nu sunt 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');
});
});