html - web page navigation not working when link is clicked -


i have web page table of contents , page navigation not working. here html:

<a name="top_of_page">create account</a>  <a href="#top_of_page">top</a> 

when click on top of page link nothing happens. doing wrong? in advance.

name not correct attribute use. use id instead.

<a id="top_of_page">create account</a>  <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>  <a href="#top_of_page">top</a>


Comments

Popular posts from this blog

ios - Memory not freeing up after popping viewcontroller using ARC -

Django REST Framework perform_create: You cannot call `.save()` after accessing `serializer.data` -

Why does Go error when trying to marshal this JSON? -