Playing with your browser

Some blog authors are nuts about protecting their web site from copying files. There are many ways to protect your site – but only one really good (publish nothing). I often see small javascripts that disable the ability to right-click where javascript.about.com has a much simpler solution:

<body oncontextmenu=”return false;”>

Please try a right click now…
If you are fooled by a web author in such a way, what could you do? tech-recipes has the answer: Of course, we can use javascript to turn it back on.

When visiting the offending website, type the following into the URL bar of your browser:
javascript:void(document.oncontextmenu=null)

Happy browsing, yea, yea.