[jQuery] Re: Is using jQuery and jQuery (2, 3, 4, n versions of jQuery on the same context) possible?

2008-02-02 Thread Scott González
I created a test page for this a while ago when someone else asked about this. I believe the context was that they were using a framework which had jQuery 1.0.4 bundled in and they wanted to use jQuery UI, which required jQuery 1.2. You can see the method I used at

[jQuery] Re: Is using jQuery and jQuery (2, 3, 4, n versions of jQuery on the same context) possible?

2008-02-02 Thread Scott González
Thinking about this more, the best way to do this would probably be to create a single file that contains the version of jQuery you want to use, plus some extra code that calls jQuery.noConflict(true) and adds methods to manage the instance of jQuery that you care about. You could do something

[jQuery] Re: Is using jQuery and jQuery (2, 3, 4, n versions of jQuery on the same context) possible?

2008-02-01 Thread Cloudream
http://docs.jquery.com/Core/jQuery.noConflict#extreme On Feb 1, 5:05 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Using jQuery with other libraries is easy: http://docs.jquery.com/Using_jQuery_with_Other_Libraries What I'd like to do is do inject jQuery in pages where jQuery already