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

Barry Hess http://blog.bjhess.com

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

Rails auto select text field

A simple helper to create those snazzy on-click-auto-select text fields you see on all the video-sharing sites.

def auto_select_text_field_tag(name, value = nil, options = {})
  text_field_tag(name,
                 value,
                 { :onclick => "$(’#{name}’).select()",
                   :readonly => "true" }.merge(options))
end



A _little_ more info on my blog.

~Barry Hess
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS