So this question isn't as crazy as it might sound at first. I'm developing a piece of javascript code to drop into my client's pages. What I'm worried about is if they are using another version of jQuery on their site.
I know from the Jquery docs that something like this should work.
var dom = {};
dom.query = jQuery.noConflict(true);
The problem is I am also using some jquery plugins, namely fancybox and mousewheel. So how can I make sure my version of jQuery is the only one that can use those plugins. I don't want a conflict to happen if one of our clients happens to use the same ones in their pages but different versions.
The only definite way I can think of right now is to modify the plugins so they only call dom.query