I am trying to pass the result from a javascript function along with
the result from a text_field with form_remote_tag. This is what I
have so far, but no go:
where test() is the javascript function. This allows me to access the
result of the test function in params[:data]. It seems that I should
be able to do the same with form_remote_tag, but I have been
unsuccessful. Maybe a syntax mistake? Maybe not possible?
result() is the name of a javascript function that I have defined
within a script in the head element. calling it in :with sets this
result to data, which can then be accessed with params[:data] in the
action create.
can anyone help with this syntax? I figure anything that works for
link_to_remote has got to work for form_remote_tag. Does anyone know
if its possible to use the :with to pass parameters using
form_remote_tag? This is what I have so far, but the params[:time]
passed in :with is still nil and it works with link_to_remote.