Disable Right Click Using jQuery
Disabling right click from the web pages using jQuery can be done using simple tweak.
Just paste the below code into the document and it's done
$(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; }); });jquery,Right Click
Comments for this post