Yesterday I had a chat with a taxi driver and upon mentioning that I am a programmer, he told me that a couple of days earlier he had experienced the following: upon trying to copy the URL from the address bar of his browser, a messagebox appeared with a message like "Please don't copy this link, rather register".
I am not a web developer, so this might be a lame question :-) but I wonder how such a thing is accomplished? What technology or language gives one this level of control over the events within the browser?
The site was some sort of a movie downloading service, as far as I understood. I failed to ask him what browser he used, but his platform was WinXP so most probably it was IE. Since I have no idea of the technology implementing this feature, I can't add any technology specific tags, but if you know an appropriate one, feel free to add it.
Disclaimer :-)
Upon reading the answers, most seem to converge on the opinion that
- on the browser page it is fairly easy to achieve, but
- on the address bar it is not, if possible at all.
I specifically asked back to make sure that he meant he was copying the URL from the address bar, and he confirmed that. Nevertheless, it might still be a misunderstanding on either side. I haven't seen the event happening, so I can only repeat its description as I heard it.
<html><head><script>function a(e) {alert('a');}addEventListener('keydown', a, false);</script></head><body></body></html>and it only fires when you press CTRL in the window, not when the addressbar is selected (at least in google chrome). – thejh Dec 4 '10 at 22:50