I have a page using prototype (don't have much control over that).
What I'd like to do is have a document ready function that only uses "jQuery" once, and then inside that function I can just use $
and it won't conflict with prototype.
This is what I have so far
jQuery(function() {
var superProperties = $.cookie('mp_' + token + '_mixpanel');
console.log($.cookie());
});