I have a website that I've been working on and I wanted to solve a problem that I have not stumbled upon before. It has to do with anchors and nested sections.
So the code looks like this:
<html>
    <head></head>
    <body>
        <section id="sections"> <!-- FAILS the jumping -->
            <section id="abo0">
            </section>
            <section id="abo1">
            </section>
        </section>
    </body>
</html>
Now with the browser I can just jump between the different section-tags by an anchor like href="?#abo0". IF the parent section-tag (id="sections") is not in the code. What in the browser fails by using nested sections?
I've tried things like "?#sections#abo0" but nothing seem to work, other than to remove the parent section-tag.
Any idea on how to solve this weird problem? I really need to have this nested section setup as the headings will be incorrect otherwise, in the way my website currently is designed.
Thank you! Kind regards goldenmaza
 
     
    