I'm working on a library which uses jQuery internally which work fine. But i don't want force the user to use my jQuery-Version just because he uses my library in his code.
So the question is, how can i use jQuery under a different name?
Is it sufficient to do something like this:
var mylib.jQuery = {}; mylib.jQuery = jQuery.noConflict(true);
This will make jQquery available under mylib.jQuery and free the $-Symbol, but the original jQuery Symbol still works (which i think is not so good).
Peter