The disable-link tag has no wiki summary.
17
votes
9answers
29k views
disable a hyperlink using jQuery
<a href="gohere.aspx" class="my-link">Click me</a>
I did
$('.my-link').attr('disabled', true);
but it didn't work
Is there an easy way to disable the hyperlink using jquery? Remove ...