Im wondering, how do I go about allowing my javascript function to
load the updated instance variable that is loaded within a partial?
To be specific, I have a javascript function call:
onmousedown="changeTab(this)" for a tab in my layout.  This function
passes an instance variable with an Ajax.Request like so:

changeTab(tab) {
new Ajax.Request( '/test/ajax', {parameters: { date: <%=
array_or_string_for_javascript(@date) %> })
}

@date is changed each time a different link_to_remote is called and
the link_to_remote catches this change and send the updated @date
variable, but my javascript function changeTab does not pass the
updated @date variable.  How do I get the changeTab javascript
function to pass the new updated @date variable?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to