<script language="JavaScript" type="text/javascript">
//Message to display whenever right click on website
document.onmousedown = disableclick;
status = "Right click option is not allowed";
function disableclick(e) {
if (event.button == 2) {
alert(status);
return false;
}
}
</script>
No comments:
Post a Comment