When prototyping, we often do empty bindings. A very common way to do this is to do something like:
<a href="#">Go here</a>
But if the customer clicks this link, the page will move up. But if we do not specify the href attribute, the link will not behave like a link.
I see things like:
<a href="javascript;">Go here</a>
But it doesn’t look right.
Any other ideas?
source
share