I am working on service which allows third parties to upload HTML snippets. In some of these snippets there may be links to jQuery, SizzleJS... libraries and JavaScript code that requires specific versions of these libraries. The service obviously requires it's own version of jQuery.
Is there any way I could load multiple versions of jQuery (or just SizzleJS) and have my own code only referencing my version of jQuery while third parties reference any version they may be linking to? Maybe using different namespace? How would I do this?
I hope my question is clear enough.