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 have a javascript variable, I would to send along with my params when a person clicks a link.

var js_variable = something;
...
<%= link_to_remote "Link Name", {:url => {url_params}, ajax_options}, {html_options} %>

how do I add js_variable to the url_params hash??

Using rails 2.3.8

share|improve this question
What is something? – Bohdan Sep 30 '11 at 13:33
doesn't matter.... could be a string, int, whatever. – NullVoxPopuli Sep 30 '11 at 15:18

1 Answer

up vote 0 down vote accepted

possibly this older question will be useful to you Rails3 - How to send Javascript Variable to a controller's action with the link_to helper?

But it seems to me you should be using link_to_function and change the href at runtime

share|improve this answer
I'm using rails 2, probs should have said that. – NullVoxPopuli Sep 30 '11 at 15:19
there is a ralis 2 example =D – NullVoxPopuli Sep 30 '11 at 15:28
1  
yeah I should have made it more clear in the comment that there was rails2 code in it :) – riffraff Sep 30 '11 at 15:37

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.