I have a Dropdownlist.I have added wrapper class on that dropdown.And this class added span after dropdownlist to show selected text.
<span class="select-wrapper">
<select name="MethodId" id="Status" class="product-select product-select-js">
<option value="">---Select---</option>
<option value="0">GET</option>
<option value="1">POST</option>
<option value="2">FTP</option>
</select>
<span class="holder">POST</span>
</span>
And I want to change the dropdownlist selected text keyboard arrow keys(up,down,left,right) press event.
But this is working in google chrome but not in firefox.And I found that this is because of the span wrapper for dropdownlist.
Is anyone has solution of this issue ?