Есть кнопка, при нажатии на которую основной контент страницы меняется на другой.
Вот код
function hideshow() {
document.getElementById("slider").style = "display: inline-block";
document.getElementById("other").style = "display:block";
document.getElementById("allcontentblock1slider").style = "display:none"
};
<a class="headertext" onclick="hideshow();" id="slider"> Кнопка </a>
<div class="contentblock1" id="allcontentblock1slider"> Основной контент </div>
<div id="other" class="textonas" style="display:none"> Другой контент </div>