I had this same sort of issue a week or two ago. What I did turned out to be tedious but worked just fine. It was pretty easy to verify that it was done correctly.
There will be code that looks like this:
$(something)...
You may have used jQuery instead of the $. Either way you have to search for it. No way around it. If you modify jQuery itself, you can make it work. JavascriptMVC did it in their Controller. I suspect it took them a long time to debug and verify that it worked and didn't break anything.
Put some code like this somewhere at the start:
var $prefix = $('#newBody ');
In each place where you find it, replace it with this code:
$(something, $prefix)...
Note that all you are doing is a text insert or paste in the editor which is pretty quick especially if your editor has the capability to search for the closing paren and leave the cursor right before it. In Eclipse you can use search and replacement strings with regular expressions. They would be these (there is a space after the comma in the replace string).
(\$\([^\)]+)\)
\1, \$prefix\)
Note that internally (in recent jQuery versions) this is exactly like:
$prefix.find(something)...
It worked for me, and I repeat, was not very hard to debug. Plus it didn't mess up any other jQuery calls.
There is some comment about this form of jQuery selector in this StackOverflow question