Hello everybody!
Im writing a admin panel for a customer's sites, and at few places, i need to put a list of country. He want's to get Canada and US in first place, because his market are mainly US and Canada.
So, i write something like that :
<select name="customerCoutry">
<option value="US">United States</option>
<option value="CA">Canada</option>
<option value="FR">France</option>
[...]
</select>
In Firefox and Internet Explorer, it's look nice, i have a drop down with US in first place, Canada in second place, France in third place, ...
But in Safari, it's place the country name in alphabetical order. So i have a lot of Countrys (Autralia, ....), Canada, (other ones), France, (a lot of other ones) United States, (finally the others). Do you know if a hack exist to allow us to disable this Safari Feature? For example, <select name="customerCoutry" soriting="none">
, a special meta tag, something else i can insert in my page?
Thank you for your help!
...and sorry for my bad English, this is not my first language :S