I have an iframe with anchor links eg Click <a href="#chapter4"> however when the iframe scrolls to the anchor, the parent frame also scrolls to the top, is there anyway to stop this?
I have an iframe with anchor links eg Click <a href=#chapter4> however when the
Share
I have tried to solve a similar problem and ended up using javascript. Give id to your anchors and use the scrollIntoView() method.
link
EDIT: If it doesn’t affect your design, I believe that you can use css position:fixed; to prevent it. You provide little information. 🙂