Use js
$('body').bind('copy paste',function(e) {
e.preventDefault(); return false;
});
$(function(){
$(document).keydown(function(objEvent) {
if (objEvent.ctrlKey) {
if (objEvent.keyCode == 65||objEvent.keyCode == 83) {
return false;
}
}
});
});
Html Attrtibute
[body oncontextmenu="return false" oncopy="return false" oncut="return false" onpaste="return false"]
留言