<script language="javascript">
document.onmousedown = disableclick;
status = "Right Click Disabled";
function disableclick(event)
{
if (event.button == 2)
{
alert(status);
return false;
}
}
</script>
0 comments:
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.