Here is the HTML code I am working with:
<div class="myList">
<select>
<option value="1">Item1</option>
<option value="2">Item2</option>
</select>
</div>
Everything looks great in terms of CSS. However, when I implement some AJAX functionality and then try $('.myList').html(...), the styling for the dropdown list disappears.
I've tested out a few solutions from various threads, but unfortunately none of them seem to be resolving the issue.