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.
