Is there a way to store the value of a js variable in a ruby variable? The reason I ask is because, for example, when a google maps api returns the result of let''s say the location on the map, it returns it in a js variable. I need to get the value from that variable to be stored in a ruby variable. Is there a way in which I can do that? Thanks.
On May 14, 4:01 pm, semi <seminole10...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Is there a way to store the value of a js variable in a ruby variable? > The reason I ask is because, for example, when a google maps api > returns the result of let''s say the location on the map, it returns it > in a js variable. I need to get the value from that variable to be > stored in a ruby variable. Is there a way in which I can do that?make an http request to your app (either an ajax request or a more traditional form submission) Fred
On May 14, 11:33 am, Frederick Cheung <frederick.che...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> make an http request to your app (either an ajax request or a more > traditional form submission) > > FredThanks for the idea. I did something like this, but the page keeps reloading over and over: <script type="text/javascript"> temp = "wechangedit"; window.location.href = "http://localhost:3000/home/abc? keyword="+temp; </script> <%= params[:keyword] %>