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