Disable Right Click

From KOP KB
Revision as of 23:55, 10 December 2015 by ReMaster (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Honestly try your hardest not to do this. This does prevent people from taking their images. Is best used in the body tag.

<div oncontextmenu="return false;">
<!-- 
Whatever content your wrapping it around goes in between these div tags
-->
whatever image or code
</div>

JS Disable

appears to work in everything that is not related to firefox

 <SCRIPT LANGUAGE="javascript">

function click() {
if (event.button==2) {
alert('Sorry, this function is disabled.')
}
}
document.onMouseDown=click
</SCRIPT>