Desabilitar botão direito do mouse


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



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

URL: http://www.whileifblog.com/2010/11/08/jquery-disable-right-click-contextual-menu/

Report this snippet


Comments


You need to login to view comments.