Answer the question
In order to leave comments, you need to log in
Right click by default in Chrome?
Tell me what script to make the right click by default in Chrome, now there is a menu dropping out when clicked.
Answer the question
In order to leave comments, you need to log in
If you need to make your own behavior, then you can like this
window.oncontextmenu = function(e){
// your code that will add html with your custom menu
e.preventDefault();
}
const element = document.getElementById('someId')
element.oncontextmenu = null // || or function (e) { /*code*/ e.preventDefault(); } соответсвенно
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question