Hello Developer, Hope you guys are doing great. Today at Tutorial Guruji Official website, we are sharing the answer of How can i make anchor link # when url visited directly it focus on browser without wasting too much if your time.
The question is published on by Tutorial Guruji team.
The question is published on by Tutorial Guruji team.
For instance i have this
<a style="text-decoration:none;" href="#section2">Hello World</a>
and when i provided the url to another person such as for instance example.com/test.html#section2
and they visited it i want the browser to somewhat show or focus on
Hello World which is the a content what a href
is linking
Answer
Specify the “id” of the element you want to be in view when you visit that link:
<a href="#section2">Go to Section 2</a> <div> <h1 id="section2">Section 2</h1> </div>
We are here to answer your question about How can i make anchor link # when url visited directly it focus on browser - If you find the proper solution, please don't forgot to share this with your team members.