Tag: right-click
-

Prevent users from right-clicking on your website. Text & Image
How to disable right-click images on a website Plugin: WP Copy Pro Protection Using Javascript Past this in the footer.php of your theme, right above the body closing tag </body> <script language=JavaScript> <!– //Disable right mouse click Script //By Geek Site.in var message=”Function Disabled!”; /////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; } } function…