[Solved] Link button to another button [closed]
[ad_1] You can turn your buttons into labels and then use a radio to show the corresponding tab: .radio, .content { display: none; } .radio:checked+.content { display: block; } <div class=”vertical-tabs”> <ul class=”tabs vertical” data-tab=””> <li class=”tab-title active”><label for=”panel1-radio”>Tab 1</a></li> <li class=”tab-title”><label for=”panel2-radio”>Tab 2</a></li> </ul> <div class=”tabs-content”> <input type=”radio” name=”show-panel” id=”panel1-radio” class=”radio” checked> <div class=”content” … Read more