I attempted to achieve this using hrefs and ids, but it did not meet my requirements.
This is the desired format:
div.selectcountry {
margin-bottom: 10px;
font-family: arial;
font-size: 12px;
}
div.countrydepartment {
font-family: arial;
font-size: 12px;
}
<div class="selectcountry">Choose your country: <select>
<option>Russia</option>
<option>China</option>
<option>Tajikistan</option>
</select></div>
<div class="countrydepartment">Here should be a text depending on the chosen country.<br>
– Russian department: +7 (000) 000 00 00<br>
– Chinese department: +86 (000) 000 00 00<br>
– Tajikistan department: +992 (000) 000 00 00<br>
</div>
This webpage provides an example of what I am trying to achieve:
How can I accomplish this? Perhaps using JavaScript? But how? Please provide me with instructions.
Thank you for your assistance and guidance!