I noticed that on spotify.com on Google Chrome you cannot bring up the right mouse click menu in the album area. There's nothing and the right mouse click simply doesn't work.
How do they do that? I've never seen such a thing
I noticed that on spotify.com on Google Chrome you cannot bring up the right mouse click menu in the album area. There's nothing and the right mouse click simply doesn't work.
How do they do that? I've never seen such a thing
You can do so with Javascript and/or an HTML attribute (which is really a Javascript event handler anyway) as described here:
<script language="javascript"> document.onmousedown=disableclick; status="Right Click Disabled"; Function disableclick(e) { if(event.button==2) { alert(status); return false; } } </script>
and
<body oncontextmenu="return false"> ... </body>