How can I pre-fill the text area with rails

I want to set a text box with a value, but it does not work.

<%= f.text_area(:self_summary, :input_html => { "date-pre" => "I will get to this later."}, :class => "textareastyle") %> 
+4
source share
1 answer
 <%= f.text_area(:self_summary, :value => "I will get to this later.", :class => "textareastyle") %> 
+11
source

All Articles