I use jQuery, I need to make some anchor tags perform no action.
I usually write it like this:
link
H
I know this is tagged as a jQuery question, but you can answer this with AngularJS, also.
in your element, add the ng-click directive and use the $event variable which is the click event... prevent its default behavior:
You can even pass the $event variable into a function:
in that function, you do whatever you want with the click event.