For those of us that make frequent use of the right click menus for navigating in our browsers or for other legal and legitimate purposes, I post the following snippit of code:
javascript:void(document.oncontextmenu=null)
Just copy and paste the above into the Address bar of your browser whenever you are on a page that disabled the right click menu. Then press Enter. The right click will now work until you go to another page that disables it again. I made a shortcut (bookmark, or Favorite) with the above code as the URL. It is always visible as a shortcut or link at the top of my browser, so I can click it anytime I wish.
If the above doesn't work, then use this code instead:
javascript:void(document.onmousedown = null);void(document.onclick = null);void(document.oncontextmenu = null)
Hope this helps out those who regularly use the right click menu for legal purposes.
cheers,
rfs
__________________
"The map is not the Territory"
|