How to disable right click on a page with javascript ?

Want to use a simple trick to disable the right click ?

okay here goes .

        window.addEventListener("contextmenu",function(e){

     e.preventDefaut();

      return false;

},false);

               That's it ?

                           Thank you .

Comments