I am trying to give a class to my text_field_tag
I have this
<%= text_field_tag :login_aei, class: 'form-control' %>
but it keeps generating this :
<input type="text" name="login_aei" id="login_aei" value="{:class=>"form-control"}">
What am I doing wrong ?
You declared it wrong. Here is the one will work.
<%= text_field_tag :login_aei, "", class: 'form-control' %>
I gave the value of the input
field as empty string, but you can give any value what meets your business needs.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With