My original code is
<%= button_to 'Destroy', girl, confirm: 'Are you sure?', :disable_with => 'deleting...', method: :delete, :class => 'btn-mini btn-danger btn' %>
I'd like to add an icon in front of the word "Destroy".
icon tag is this
<i class="icon-pencil icon-white"></i>
How can I do that??
Try using a block
<%= link_to girl, confirm: 'Are you sure?', disable_with: 'deleting...', method: :delete, class: 'btn-mini btn-danger btn' do %>
<i class="icon-pencil icon-white"></i> Destroy
<% end %>
http://apidock.com/rails/v3.2.1/ActionView/Helpers/UrlHelper/button_to
http://apidock.com/rails/v3.2.1/ActionView/Helpers/UrlHelper/link_to
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