What’s the use of the hashtag # (number sign) in the links?

While working on a Web page you might see a link that’s like this:
<a href="#">features</a>
href="#" here is a placeholder. The link will not point to anything in particular.

Sometimes it means the app is i…


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

While working on a Web page you might see a link that’s like this:

<a href="#">features</a>

href="#" here is a placeholder. The link will not point to anything in particular.

Sometimes it means the app is in progress, and we’ll fill that link href attribute later on.

Other times you’ll see this:

<a href="#features">features</a>

In this case the link references a point in the same page.

You’ll have an element like this:

<a id="features">Features</a>

It can also be an empty element, which will be there, but hidden:

<a id="features"></a>

Notice we used id here.

Clicking the

<a href="#features">features</a>

item will bring to the <a> with the id equal to features.

To complete this description, if the link is

<a href="/features">features</a>

clicking this the browser will open on a separate URL.

You can also combine those, so

<a href="/features#first">features</a>

will open the /features URL, and will scroll to the <a> tag with id="first".


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com


Print Share Comment Cite Upload Translate Updates
APA

flaviocopes.com | Sciencx (2022-04-17T05:00:00+00:00) What’s the use of the hashtag # (number sign) in the links?. Retrieved from https://www.scien.cx/2022/04/17/whats-the-use-of-the-hashtag-number-sign-in-the-links/

MLA
" » What’s the use of the hashtag # (number sign) in the links?." flaviocopes.com | Sciencx - Sunday April 17, 2022, https://www.scien.cx/2022/04/17/whats-the-use-of-the-hashtag-number-sign-in-the-links/
HARVARD
flaviocopes.com | Sciencx Sunday April 17, 2022 » What’s the use of the hashtag # (number sign) in the links?., viewed ,<https://www.scien.cx/2022/04/17/whats-the-use-of-the-hashtag-number-sign-in-the-links/>
VANCOUVER
flaviocopes.com | Sciencx - » What’s the use of the hashtag # (number sign) in the links?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/04/17/whats-the-use-of-the-hashtag-number-sign-in-the-links/
CHICAGO
" » What’s the use of the hashtag # (number sign) in the links?." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2022/04/17/whats-the-use-of-the-hashtag-number-sign-in-the-links/
IEEE
" » What’s the use of the hashtag # (number sign) in the links?." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2022/04/17/whats-the-use-of-the-hashtag-number-sign-in-the-links/. [Accessed: ]
rf:citation
» What’s the use of the hashtag # (number sign) in the links? | flaviocopes.com | Sciencx | https://www.scien.cx/2022/04/17/whats-the-use-of-the-hashtag-number-sign-in-the-links/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.