The Idea
I have a User Manual page, it is kinda big, and each topic has a anchor linked to it.
In my product page, I can link the client straight to that topic in the manual with a anchor, like:
Manual:
<a href="#manage_options">Managing Options</a>
<!-- Instructions on how to manage options -->
Product Page:
<a href="http://example.com/manual/#!/manage_options">How to Manage Options</a>
The Problem
When I click the "How to Manage Options" link in Product Page, it goes to the manual and immediately to the #manage_options anchor
But it often stops in the wrong place, because it goes to the anchor, then it keeps loading images, which changes the position of the content
Is it possible to wait for all the content to be loaded, then it goes to the anchor, or any better solution for this problem?