Answer
Use $.noConflict() to release $ alias.
Wrap plugin code in an IIFE.
Example: (function($){ $(element).plugin(); })(jQuery);
Prevents interference with Prototype, Zepto, etc.
Wrap plugin code in an IIFE.
Example: (function($){ $(element).plugin(); })(jQuery);
Prevents interference with Prototype, Zepto, etc.