(Rails) What is "RJS"? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T12:40:50Zhttp://stackoverflow.com/feeds/question/459647http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/459647/rails-what-is-rjs0(Rails) What is "RJS"?Ethan2009-01-19T23:43:42Z2009-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#4596590Answer by Keltia for (Rails) What is "RJS"?Keltia2009-01-19T23:50:32Z2009-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#4597363Answer by Rich Apodaca for (Rails) What is "RJS"?Rich Apodaca2009-01-20T00:26:39Z2009-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#19350230Answer by MattMcKnight for (Rails) What is "RJS"?MattMcKnight2009-12-20T06:18:33Z2009-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>