I've got the following situation
- A rails application that makes use of rjs / Scriptaculous to offer AJAX functionality
- Lot of nice javascript written using JQuery (for a separate application)
I want to combine the two and use my JQuery based functionality in my Rails application, but I'm worried about JQuery and Scriptaculous clashing (they both define the $() function, etc).
What is my easiest option to bring the two together? Thanks!