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

Popular posts from this blog

java - ImportError: No module named py4j.java_gateway -

python - Receiving "KeyError" after decoding json result from url -

.net - Creating a new Queue Manager and Queue in Websphere MQ (using C#) -