We're trying to come up to speed with Angular.js and our lead JS dev has requested that when we mock up links that don't yet have a page to go to, we should do the following:
<a href="javascript://"> instead of this:
<a href="#"> His reasoning was that Angular already has a use for the hash tag because it means something to Angular and if it doesn't find the router/directive then it is redirected to /scenario.
What is a better way to do this?
hrefat all, and use CSS to style them the same?hrefor just includehrefwith no value. Thanks.