Hello All,
I am trying to disable right click only for specific links on the page> I want to create my own pop up menu for these eventually. At present I have the following
<a href='#' onContextMenu="typesclick()">Types</a>
the function is
function typesclick()
{
alert("testing");
return false;
}
The alert appears but the browser context menu also appears. I am using ie7? Any ideas why this is not working?
Scott Bailey