PHPJavascript

Web Development Guide – My Personal Library of Tutorials and Scripts

Disable right click

February23

Use jquery to disable right click

Add the following code in the <head> of your webpage

<script type=”text/javascript”>
$(document).ready(function(){
$(”img”).bind(”contextmenu”,function(e){
return false;
});
});
</script>

I had used this on my drupal site in page.tpl file

Email will not be published

Website example

Your Comment:

 

2,885 spam comments
blocked by
Akismet