Jag försöker göra en droplist där man skall välja land och där vill jag ha en flagga i droplisten före varje namn. Jag har försökt enligt nedan men det funkar bara i Firefox, ej i IE. Någon som kan hjälpa mig?!
<form name="country" id="country">
<select name="select2" class="form" onchange="url=this.options[this.selectedIndex].value; if(url){ location.href=url; }">
<option value="" selected="selected">Välj land:</option>
<option value="http://www.siten.com/se" style="background:url(../flag_se.gif) left no-repeat; text-indent:20px">sverige</option>
<option value="http://www.siten.com/no" style="background:url(../flag_no.gif) left no-repeat; text-indent:20px">Norge</option>
<option value="http://www.siten.com/dk" style="background:url(../flag_dk.gif) left no-repeat; text-indent:20px">Danmark</option>
</select>
</form>