Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
you need to read about ajax – hereandnow78 Jan 7 at 17:00
possible duplicate of How to send a Javascript variable to server side? – Quentin Jan 7 at 17:03
Ruby runs on the server side, JavaScript runs on the client side. The two simply cannot talk to each other this way. Quentin's link is for Java, but the answer still applies; you need to do a remote request to the server to run Ruby code, either via a standard form submission or via AJAX. – Jim Stewart Jan 7 at 20:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.