html - How do I create a Select option that links to another page in Rails -


i have select list several options. wanna choose 1 straight away direct me page. don't wanna have submit button. how do in rails?

you can achieve javascript. if using jquery can this.

$(function(){   $("select#your_select_field_id").change(function(){      if ($(this).val() == "the desired field") {       window.location.href = "http://stackoverflow.com";     }     } }); 

i didn't tested code, contain syntax errors, can idea form snippet.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -