How to re-enable the context menu in this case?

Posted by lemonedo on Stack Overflow See other posts from Stack Overflow or by lemonedo
Published on 2010-06-02T22:05:09Z Indexed on 2010/06/02 22:54 UTC
Read the original article Hit count: 162

Filed under:
|
|
document.addEventListener('contextmenu', function (e) {
    e.preventDefault()
    e.stopPropagation()
    e.returnValue = false
    e.cancleBubble = true
})

No way?

Edit: document.oncontextmenu = null does not work.

P.S. I cannot have the reference of the listener function since I am not the owner of the site preventing the context menu.

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about event