javascript - how to disable right-click on google forms -
I am making a quiz on Google Form To prevent participants from copying questions, I right-click the button I want to disable Please tell how this can be done. Apart from this, I'm a newbie on javascripting, a detailed reply in the LeMan language will be appreciated.
Try adding it (though jQuery)
- to try Right click on the text
$ (document) .ready (function () {$ (document) .bind ("contextmenu", function (e) {e.preventDefault ();}) ;});
Comments
Post a Comment