I am facing an issue with a link button inside a <td>
that needs to be disabled. It is working fine on Internet Explorer but not functioning properly in Firefox and Chrome.
I have tried various methods, but nothing seems to work on Firefox (using version 1.4.2 js):
$(".myLink").attr('disabled', 'disabled');
$(".myLink").attr('disabled', true);
$(".myLink&qout;).attr('disabled', 'true');
Please note that I cannot remove the click function for the anchor tag as it is added dynamically, and it is essential to display the link in a disabled state.