My CSS class, selected, highlights the current step in a DIV on separate pages by moving the selected word to the next DIV.
However, I am struggling to achieve the same effect in Master Page VB .Net where all steps are on one page. How can I highlight the next step when the page loads? Thank you for your help.
<div id="Div1">
<div class="step selected" id="Div2">
<h2>
Join</h2>
<img src="./assets/images/signup_arrow.png" class="selected">
</div>
<div class="step" id="Div3">
<h2>
Choose</h2>
</div>
<div class="step" id="Div4">
<h2>
INVITE</h2>
</div>
</div>