Monday, June 10, 2013

Disable right click on link anchor a tag

I have a link that I use a jQuery plugin to open in a popup window and that's how it is to be used. So in order to prevent users to right click and open it in a new window I wanted to disable right click on my anchor tag.. the solution is simple.. add 'oncontextmenu="return false"'

<a href='myLink.php' oncontextmenu="return false">Click me</a>

No comments:

Post a Comment