Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The common solution when mixing e.g. prototype and jQuery is using var $j = jQuery.noConflict(); to restore the prototype function $ and then using $j to access jQuery.

However, since prototype will be completely replaced with jQuery at some point, I'd prefer to use $ for jQuery and e.g. $p for prototype. Is this possible?

I know I could wrap my jQuery code in (function($) { /* my code */ })(jQuery); but I guess it'd be cleaner if I could get rid of the global $ var pointing to a prototype function.

share|improve this question

1 Answer

up vote 4 down vote accepted

Prototype doesn't have a mechanism to give up control of the $ function like jQuery does. Your best bet, as you note, is to wrap your jQuery code in a function that has $ locally defined to jQuery. Once you have all of the prototype code removed, you can remove the wrappers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.