I have an array named weight_array. Now i want to pass it to my
javascript function abc.. How can i pass it .. May be a stupid question
but did'nt find it by googling also ..
Currently i am doing like this.
<%= radio_button "ab", "cd", { :onclick => "abc(weight_array)"; } %>
Tried this also ..
<%= radio_button "ab", "cd", { :onclick => "<%= abc(weight_array) %> ";
} %>
Tried this as well ..
<%= radio_button "ab", "cd", { :onclick => "abc(weight_array.to_json)";
} %>
Also after resolving it, i want to know that if i need to pass the ruby
array with join function ..then how can we pass ..
I mean the function [ weight_array.join(", ") .. ] ..
Need to know each and every possible answer ..
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---