how to select value in ul li tag in html

Solutions on MaxInterview for how to select value in ul li tag in html by the best coders in the world

showing results for - "how to select value in ul li tag in html"
Anouk
30 Feb 2020
1<form id="formId" action="" method="post" class="loginForm">
2  <fieldset id="localeSelect">
3   <div>
4     <div  id="localeIndicator">
5      <a href="#" title="Select a country">
6       <span class="united-kingdom"></span>UKEnglish
7      </a>
8    </div>
9    <ul class="no-bullets block-list" role="tablist">
10     <li><a href="#"><span class="austria"></span>Austria</a></li>
11    </ul>
12   </div>
13</fieldset>
14<fieldset>
15 <input type="hidden" name="locale" />
16 <input type="submit" value="Continue" />
17</fieldset>
18