I am creating a contact form and want to make it more barrier friendly by highlighting the background of a selected item while tabbing through them with keyboard.
Here is a fiddle to help explain.
When clicking in the first box and then hitting tab, the dropdown menu is selected and should change its background-color to indicate its selection. (Note: not affecting the dropdown options)
How do I change the correct part of the element when its selected via tabulator?
<html>
<body>
<div class="textarea1">
<textarea rows="1" cols="20">
</textarea>
</div>
<div class="dropdown">
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
</div>
<div class="textarea2">
<textarea rows="1" cols="20">
</textarea>
</div>
</body>
</html>