Hi folks Im trying to pass a value to my hidden div using simple_form but im not sure how to do this, was wondering if anyone could help me with this. Here is my view using simple_form
<%= f.label "First name" %> <%= f.text_field :first_name %>
<%= f.label "Last name" %>
<%= f.text_field :last_name %>
<%= f.input :full_name, :as => :hidden, :input_html => { :value => [:first_name, :last_name].join(' ') } %>
<%= f.submit %>
If ive already got the first and last name from the input fields how can i pass those values to the hidden div? This code above isnt working. Thanks