vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Disable Right-Clicking?

[F] Disable Right-Clicking? - Posted By rosebud (rosebud) on 18th Jun 08 at 10:35pm
I know there are other ways around this. I don't know what they are, nor do I want to know. However, can someone please code this if it hasn't already?

Re: Disable Right-Clicking? - Posted By Marc (cr0w) on 18th Jun 08 at 10:47pm
Global footer:

<script type="text/javascript">
<!--
// Disable right-click

document.oncontextmenu = function(){ return false; }
//-->
</script>

{Smile}

Re: Disable Right-Clicking? - Posted By rosebud (rosebud) on 18th Jun 08 at 11:27pm
That was fast! Thank-you!

Re: Disable Right-Clicking? - Posted By Marc (cr0w) on 19th Jun 08 at 1:10am
No problem. {Smile}