emmykane1570048207 0 Posted July 13, 2016 We actually made a free plugin to disable right clicking and dragging and dropping on only images, so you protect your intellectual property without compromising the user experience by disabling right clicking everywhere. You can get it at www.squareguru.com/content-protection Share this post Link to post
grapthar 0 Posted July 24, 2016 Just wanted to thank you for this! Seems to be the best solution. Share this post Link to post
19designs92 0 Posted September 27, 2016 @mcgarveybarlow Can a code be written to make a quick key action for shift-command-control-4 to trigger a screen white out?in other words its triggers a new empty page to load? Share this post Link to post
JoannaJeanne 0 Posted July 1, 2017 Hello! ^.^I have been trying to edit my HTML code on my blog and place the codes under the HEADER or my SIDEBAR on my blog, but it all seems to fail... what am I doing wrong? Why it isn't working? ANy suggestions? Share this post Link to post
JoannaJeanne 0 Posted July 1, 2017 Hello! :)Should I paste it on my header or side bar or edit HTML manually? Share this post Link to post
ryguild 0 Posted January 11, 2018 (edited) adding this bit to prevent right-click <script type="text/javascript"> function nocontext(e) { var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName; if (clickedTag == "IMG") return false; } document.oncontextmenu = nocontext; </script> <style>img { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; user-drag: none; } </style> Edited January 11, 2018 by ryguild Share this post Link to post
andreacaresse 34 Posted April 5 YAAAAS... thank you!!! been searching everywhere for this and it works perfectly! Share this post Link to post
immakingthisaccountjusttol 0 Posted August 11 Thanks you so much!! <3This was the code I wanted. Prevents drag on images but not on typed writting.Thanks again ryguild Share this post Link to post