Reputation: 31
How can I point from a page a.html
To a specific div
<div id="profs">
...
</div>
In another page b.html
?
I tried
<a href ="b.html#profs"> link </a>
but it is not working.
Upvotes: 2
Views: 43
Reputation: 4967
You need to use the anchor tag in a.html
:
<a name="profs"> ... </a>
Upvotes: 1