Skip to content

Instantly share code, notes, and snippets.

@ennjoy
Last active August 4, 2018 14:25
Show Gist options
  • Save ennjoy/90365baf4c55f828567398c82c3badb3 to your computer and use it in GitHub Desktop.
Save ennjoy/90365baf4c55f828567398c82c3badb3 to your computer and use it in GitHub Desktop.
Блокировка к элементу сайта
var message="Ой, ошибочка!";
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
window.onkeydown = function(evt) {
if(evt.keyCode == 123) return false;
};
window.onkeypress = function(evt) {
if(evt.keyCode == 123) return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment