Image submit button tag for Rails

Want to replace your form submit button with an image? Boom.

<%= form_tag :action => :update_user, :id => user %>
<%= image_submit_tag "IMAGE_URL", :class => 'CLASS_NAME' %>
<%= end_form_tag %>

# will generate:
# <form action="/update_user/1" method="post">
# <input class="CLASS_NAME" src="/images/IMAGE_URL" type="image" />
# </form>

2 comments

  1. thank you.

  2. yeah boom! thx

Leave a comment