Answers for "disable right click code"

8

disable right click

document.addEventListener('contextmenu', event => event.preventDefault());
Posted by: Guest on March-04-2020
0

Disable right click on your webpage

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language