My html is
<select name="one_day_per_month" id="one_day_per_month" style="width: 200px">
<option value="false" selected>No</option>
<option value="true">Yes</option>
</select>
The page is wrapped with
$( document ).ready(function() {...}
I can change the value by using
$("#one_day_per_month").val("true")
The value is updated, but the dropdown list does not change in the browser does not change. What am I doing wrong?