I\'m currently attempting to disable a link using the following jQuery selector:
$(\"a[href$=/sites/abcd/sectors]\").removeAttr(\"href\");
You may use function "is" in jQuery. It is not case-sensitive.
$("a").each(function() { if ($(this).is("a[href$=/sites/abcd/sectors]")) { $(this).removeAttr('href'); } })