I have a select element that I want to set on a specific value when loading the page:
<select id="Town">
<option value="">Select...</option>
<option value="4004">Town A</option>
<option value="4005">Town B</option>
<option value="4006">Town C</option>
<option value="4007">Town D</option>
<option value="4008">Town E</option>
<option value="4003">Town F</option>
</select>
When I try to set the selected option through this line of code:
var SelectedTown = '4005';
jQuery('select#Town>option[value=' + SelectedTown + ']').attr('selected','selected');
it does not work in run mode, I mean the visible part remains 'Select...' However if I run it in Firebug debug mode, Break on the line and then Continue it works and the visible part becomes 'Town B'.
I have also tried the following lines:
jQuery('select#Town').attr('value',SelectedTown);
jQuery('select#Town').val(SelectedTown);
jQuery('select#Town').val('4005');
but none of them works.
I use jQuery 1.6.2.
Any idea where I am wrong?