I want to read out the value of a dropdown list and pass it to a ruby method. The result of my ruby method I want to use in a JavaScript framework.
My code looks as follows:
var firstSelect = document.getElementById("firstLang");
var firstOpt = firstSelect.options[firstSelect.selectedIndex].value;
var curData = <%=raw BuildCompact.getData(firstOpt).to_json %>;
But that is not working because I cannot pass my JavaScript variable to my method. Is there a way to do that?