Answers for "how to disable right click on a section in html"

9

disable right click

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

how to disable right click of mouse on web page

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

Code answers related to "how to disable right click on a section in html"

Code answers related to "Javascript"

Browse Popular Code Answers by Language