Skip to content

Instantly share code, notes, and snippets.

@edymerchk
Last active January 3, 2016 17:39
Show Gist options
  • Select an option

  • Save edymerchk/8497173 to your computer and use it in GitHub Desktop.

Select an option

Save edymerchk/8497173 to your computer and use it in GitHub Desktop.
select with extra attrs in each option
<%= f.select :invited_by_id, collection: User.approved.map {|u| [u.doc, u.id, {"names" => u.names}]} %>
<label id="name"> -- </label>
$('select').change ->
names = $("option[value="+@.value+"]").attr("names")
$("label#name").html(names)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment