(Rails) What is "RJS"? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T12:40:50Z http://stackoverflow.com/feeds/question/459647 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/459647/rails-what-is-rjs 0 (Rails) What is "RJS"? Ethan 2009-01-19T23:43:42Z 2009-12-20T06:18:33Z <p>I've seen "RJS" and "RJS templates" mentioned in passing in blog posts and tutorials. I did a search, but I'm still unsure about it. Is it a technology specific to Rails, rather than a standard like JSON or YAML?</p> <p>I understand it's used for "generating JavaScript." Does it generate generic JS or Rails-specific JS requiring the Prototype and Scriptaculous libraries?</p> http://stackoverflow.com/questions/459647/rails-what-is-rjs/459659#459659 0 Answer by Keltia for (Rails) What is "RJS"? Keltia 2009-01-19T23:50:32Z 2009-01-19T23:50:32Z <p>You may want to have a look at the <a href="http://www.slash7.com/articles/2006/10/8/rjs-demistified-with-pretty-colors" rel="nofollow">blog post</a>.</p> http://stackoverflow.com/questions/459647/rails-what-is-rjs/459736#459736 3 Answer by Rich Apodaca for (Rails) What is "RJS"? Rich Apodaca 2009-01-20T00:26:39Z 2009-01-20T00:26:39Z <p><a href="http://railscasts.com/episodes/74-complex-forms-part-2" rel="nofollow">This Railscast</a> gives a nice example of using RJS to add and remove form fields dynamically without hitting the server with an ajax call.</p> <p><a href="http://railscasts.com/episodes/45-rjs-tips" rel="nofollow">These RJS tips</a> may also be helpful.</p> http://stackoverflow.com/questions/459647/rails-what-is-rjs/1935023#1935023 0 Answer by MattMcKnight for (Rails) What is "RJS"? MattMcKnight 2009-12-20T06:18:33Z 2009-12-20T06:18:33Z <p>RJS is a template (similar to an html.erb file) that generates JavaScript which is executed in an eval block by the browser in response to an AJAX request. It is sometimes used (incorrectly?) to describe the JavaScript, Prototype, and Scriptaculous Helpers provided by Rails.</p>