I believe this is jQuery.noConflict() .
You can call it standalone as follows:
jQuery.noConflict(); jQuery('div').hide();
Or you can assign it to another variable of your choice:
var $j = jQuery.noConflict(); $j('div').hide();
Or you can continue to use the jQuery $ function inside the block as follows:
jQuery.noConflict();
For more information, see Using jQuery with Other Libraries in the jQuery Documentation.
source share