I have custom jQuery:
jQueryCustom = jQuery.noConflict(true);
I have a plugin in separate file:
(function (window, document, $, undefined) {
// ......
}(window, document, jQuery));
What's the best way to pass my jQueryCustom as jQuery to plugin?
I think it's not a good idea to edit library file with plugin.
P.S. I want to load custom jQuery and plugin for it into page, that already may has jQuery of another version and this plugin of another version..