Hi,
I’d like to know a simple way to do this with rails.
Here is a select helper snippet for a select list box
<%= select :this_data, :id, @data, { :include_blank => true } %>
I want to be able to automatically send a non remote post
when user selects a given option. Kind of like sending a normal post on
submit button to specific action, but rather then using a button, the
post is sent when user selects an option.
Thanks.