So it looks like on RoR, when Ajax (using form_remote_tag) returns a
success code, Javascript is also returned to handle the visual effects.

using Fiddler, I do see the following response:

    try {
    Element.update("vote_score", "Score 58");
    $("vote_score").visualEffect("highlight");
    } catch (e) { alert('RJS error:\n\n' + e.toString());
alert('Element.update(\"vote_score\", \"Score
58\");\n$(\"vote_score\").visualEffect(\"highlight\");'); throw e }

Will there be situation where the code is quite big (like 1 or 2k) that
RJS can use some sort of static Javascript already loaded to handle the
effect?

Is there any other ways to use static Javascript already loaded with the
page?  Must it be just raw Javascript and use the Prototype's Ajax
success response to call the static Javascript code, or can it be some
Rails mechanism related to RJS?
-- 
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 rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to