Reputation: 21846
I am navigating to a page with bookmark - http://www.makemeok.com/ncr/palam-colony-hospitals/singhal-hospital-jabfc#description
The page is templated using ASP.NET MVC Razor engine.
The bookmark - description exists on the page. But, the page does not scroll down to the bookmark on document load. Any reasons why the bookmark is not working?
<a id="description" name="description"></a>
Upvotes: 0
Views: 867
Reputation: 12491
I checked your page, that situated on link.
You have 2 a
tags with id
and name
with value description
.
That's why it's not working. Just change one of them to
<a id="description2" name="description2">...</a>
And everything will work.
Upvotes: 1