Posts by joao • 1 point
1 post
-
0
votes3
answers4276
viewsA: Display menu when right-clicking?
var menu = document.querySelectorAll(".menu"); if (document.addEventListener) { document.addEventListener('contextmenu', function(e) { menu[0].style.display = 'block'; menu[0].style.marginLeft =…