Skip to content

Instantly share code, notes, and snippets.

@tcocca
Created May 12, 2010 16:12
Show Gist options
  • Select an option

  • Save tcocca/398770 to your computer and use it in GitHub Desktop.

Select an option

Save tcocca/398770 to your computer and use it in GitHub Desktop.
<%= select_tag "searches", options_for_select([["Select a Search",""],["Tom",1],["Chris",2]]), :onchange => "search_redirect(this);" %>
<script type="text/javascript" charset="utf-8">
function search_redirect(field) {
if (field.value != "") {
window.location = "http://localhost:3000/searches/" + field.value;
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment