|
|
|
|
|
by koch
1203 days ago
|
|
Does this website get its name from the insanity of disallowing copy/paste & context menus jQuery('body').bind('cut copy paste', function (e) {
e.preventDefault();
}); jQuery("body").on("contextmenu",function(e){
return false;
}); |
|