View Single Post
Right Click Protection - Undone ...
Old 11-06-2006, 06:07 PM   #1 (permalink)
R_Fredrick_Smith
Free Member

 
R_Fredrick_Smith's Avatar
 
Join Date: Jun 2003
Member GG#: 35872
Location: Dallas/Fort Worth Area
Posts: 3,801
Comments: 42

R_Fredrick_Smith is offline IP: 76.186.138.200
  Reply With Quote

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"
  View Public Profile Send a private message to R_Fredrick_Smith Visit R_Fredrick_Smith's homepage! Find More Posts by R_Fredrick_Smith