Is there a way to specify a value to the text_area method that will be placed between the generated textarea tags?
This is an example of the code I am using.
<% remote_form_for ... do |f| %>
<%= f.text_area :message %>
<%= f.submit 'Update' %>
<% end %>
1 Answer