I am using an array to store my values for a f.select dropdown in my form
<%= f.label :country_of_origin %>
<%= f.select :country_of_origin, [['Wales'],['Scotland'],['England']] %>
Rather than the default value being Wales I would like it to say “Please Select” (obviously don’t want to be able to post the value “please select). Can anyone point me in the right direction please?
1 Answer