Answers for "how to fix right click disable on websites"

1

Disable right click on your webpage

<body oncontextmenu="return false">    <div></div></body>
Posted by: Guest on August-26-2021
7

how to disable right click on website

document.addEventListener('contextmenu', event => event.preventDefault());

// ⇓ Test it (fiddle) ⇓
Posted by: Guest on September-14-2021

Code answers related to "how to fix right click disable on websites"

Browse Popular Code Answers by Language