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.
Simply in SASS:
.some_class{ // styles... &.active { pointer-events:none; } }