I'm trying to get the selected value from a select.
<select name="customer-country">
<option value="CA">Canada</option>
<option value="FR">France</option>
</select >
My problem is the code given in jQuery.com do not work.
alert($("input[name=customer-country]").val());
Any clue ?
Thanks.