Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Nano Meko
1,838 PointsIs there a way to pass a javascript variable to ruby code?
For example in my index.html.erb if I have a javascript array holding an array of selected posts such as:
var selected = [];
How do I pass this variable into ruby code on the same page:
<% Post.recent(selected[]).each do |post| %> ..... <% end %>
1 Answer

Jason Seifer
Treehouse Guest TeacherHey Nano,
You need to contact the rails server with your variable somehow. This usually involves either an AJAX request or a POST/PUT to the server. There's no immediate way to get access to variables the way you describe :(