is it possible to set a default value of a <select> element without using the selected option on the element?
I am looking for a solution that would work from the <select> element itself, something like:
<select name="country" style="width:210px;" [defaultvalue="option1"]> ....options.... </select> (enclosed in the [ ] is for illustration of what I am looking for)
Is it possible to do this HTML only? Or better set it with jQuery? Other ideas?
<option>, I need to do it from the<select>$('select[name="country"]').val('value')