How do you make an anchor link non-clickable or disabled? I have an anchor link that I want to disable once the user clicks on it. Or, remove the anchor tag from around the text, but definitely keep the text. some text I can do this easily with a button by adding .attr("disabled", "disabled"); I successfully added the disabled property, but the link was still clickable. I don't really care if th..