Hey all, I basically need to add a class to every <option> in a select. There is a different class to apply depending on the value of each option.
I need an easy way of doing something like
$('select option').each(function(){
if($(this).val()=="Argentina"){ $(this).addClass("ar"); }
if($(this).val()=="Brazil"){ $(this).addClass("br"); }
if($(this).val()=="Czech"){ $(this).addClass("cz"); }
});
I have a very long list of countries, so using an array of some sort would be preferable, and then let the function filter in the if value = and the class name.
Many thanks
Tim