Ruby Weekly is a weekly newsletter covering the latest Ruby and Rails news. ActiveJax is a Rails plugin developed by Nicholas Schlueter that acts as a bridge between ActiveRecord and Prototype-backed JavaScript. This means you can call ActiveRecord model methods from JavaScript using AJAX. Example: ActiveJax.Author.find_by_name("Nicholas Schlueter").each(function(author) {alert(author.name);}); I