the problem is that we have tabs on the main page, <div class="tab__item" id="tab1>tab 1</div > and <div class="tab__item" id="tab2">tab 2</div> and so that we can follow links from other pages, for example, https: // mainpage / # tab2 - how can you make it open when you go to the second or third tab? because now, when you go, the first tab is always open

    1 answer 1

    You can work this out in js by domready:

     document.addEventListener("DOMContentLoaded", function() { if('#tab2' === window.location.hash) { //скрываем первый таб, открываем второй } //else if() тут #таб3 итд });