views:

44

answers:

4

How to swap prototype for jquery in rails 3.0?

A: 

jQuery with Rails 3.

Google is your friend.

Skilldrick
A: 

http://github.com/rails/jquery-ujs

retro
+1  A: 

Add to your Gemfile and bundle install

gem "jquery-rails"

Run the generator:

rails generate jquery:install

See the github page for more info.

Dan McNevin