I understand that it's a good idea not to leave empty anchor tags. In jQuery and other syntaxes I've noticed everyone typically uses a # to fill the gap (<a href='#'>anchor text</a>). Is this character any better or worse than filling it with anything else? (e.g. <a href='$'>anchor text</a>). I have no reason to want to do this, but seemingly no reason aside from convention to do it the other way either. Why is the # convention used in empty anchor tag hrefs?
|
|
|||
|
|
This is because the It is used for named anchors (or any ID) within a page, so a link can jump directly to that area. Wikipedia calls it the
As a practical example - this link to wikipedia has a fragment identifier (always at the end of the URL):
In the page, there is a |
|||
|
|
|
This way, if the user has disabled javascript, actually following the link to "http://mysite.com/#" will not have any negative consequences. For example, these links still work, since while these don't: |
|||||||
|
|
The link denoted by The # is the character used to separate an anchor from the rest of the URL. Browers don't even send it to the server, but use it to vertically scroll to the position in the page marked with this anchor (using So basically, So |
|||
|
|
|
it's mostly old school way of preventing the click action to trigger a page reload. If you aren t using the href attribute just leave it empty, or even better if you can target some fallback URL for people with JS disabled |
|||||
|