I'm in need of some assistance,
Many websites utilize the jQuery framework to add stylish effects to their selectboxes. Unfortunately, I am limited to using ie7 at my workplace and I want to include a 1px solid #ddd border around my selectbox (which must be compatible with ie7). I understand that ie7 doesn't natively support this CSS feature.
How can I use jQuery to style my select box in order to achieve this?
<select>
<option value="">Month</option>
<option value="january">January</option>
<option value="february">February</option>
<option value="march">March</option>
<option value="april">April</option>
<option value="may">May</option>
<option value="june">June</option>
<option value="july">July</option>
<option value="august">August</option>
<option value="september">September</option>
<option value="october">October</option>
<option value="november">November</option>
<option value="december">December</option>
</select>
If there is a simple and lightweight method to also match the dropdown's border color with the selectbox border, that would be fantastic too.
Thank you.