Search code examples
javascriptjqueryhtmlhref

href: link back to certain class on previous single page


I have a single page website and for some showcase of work of the owner I redirect the user to a second html with detailed information, pictures etc. Now if the user clicks on the back link I can send him back to the main single page website but it should be a lot more user friendly if he was instant redirected to the section (= a class named work) where he left off.

So is this possible and how can I achieve this?


Solution

  • <a href="index.html#work">Back</a>
    

    But you need to use an ID, not a class...

    <section id="work">...</section>