DeepHub.us - Hackintosh - Linux and much more
Disable right click on your website - Printable Version

+- DeepHub.us - Hackintosh - Linux and much more (https://www.deephub.us)
+-- Forum: Web Design (https://www.deephub.us/forum-35.html)
+--- Forum: HTML (https://www.deephub.us/forum-37.html)
+--- Thread: Disable right click on your website (/thread-31.html)



Disable right click on your website - Alex - 07-13-2024

As you can see, on our website if you are pressing right click it's gonna say "ha ha ha!!" Smile 

This one you can do it like this:

1. Copy following code:
Code:
<script type="text/javascript">
<!--
function no_right_click()
{
if (event.button==2)
   window.alert('Ha, ha, ha!!!!');
}
document.onmousedown=no_right_click;
//-->
</script>

Put it between <head> and </head> 

Have fun