I have a link button inside a
Got the fix in css. Above css when applied to the anchor tag will disable the click event. For details checkout this link which I have to disable. This works on IE but not working in Firefox and Chrome.
Structure is - Link inside a <
td.disabledAnchor a{
pointer-events: none !important;
cursor: default;
color:Gray;
}