I have to jquery versions loaded in our website jquery A and jquery B for example. A is came from another server which i do not have control. B is the jquery version we have control, but once the A has been activated or loaded it conflicts to the B. The existing lightboxes were misaligned when A is loaded. A and B must be loaded. My question is how can I maintain both jquery versions without conflicting both?
I have research jquery noConlict() function which create a new selector so that it will not affect the other jquery library, my problem when I use this is I am not allowed to change the default '$()' selector.
Is there another way of doing this by not creating a new jquery selector? because we have many js codes and it is a bad idea to change all $() to new selector. Thanks.