How to disable right click on a page with javascript ? February 28, 2016 Get link Facebook X Pinterest Email Other Apps 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
Comments
Post a Comment