DISABLE RIGHT CLICK MENU JQUERY


/ Published in: jQuery
Save to your folder(s)

Don't ever do this, unless your employer threatens to flogg you with a loaf of stale bread. Then, maybe it's okay.


Copy this code and paste it in your HTML
  1. $(document).ready(function(){
  2. $(document).bind("contextmenu",function(e){
  3. return false;
  4. });
  5. });

Report this snippet


Comments


You need to login to view comments.