I have an angular page that has a structure like below:
<div id="topSection">
top section
</div>
<div id="bottomSection">
bottom section
</div>
From an external page (non angular), I'll need to provide a link to navigate to the bottomSection
of the page. I looked at $anchorScroll()
and it only appears to work for links within the same page. Thanks