Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

guillaume belleguic

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

remote image submit tag

// do a remote_submit_tag but instade of simple input it makes a input type image

def remote_image_submit_tag(source,options)
    options[:with] ||= 'Form.serialize(this.form)'
    
    options[:html] ||= {}
    options[:html][:type] = 'image'
    options[:html][:onclick] = "#{remote_function(options)}; return false;"
    options[:html][:src] = image_path(source)
    
    tag("input", options[:html], false)
  end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS