[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 li

[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 http://scottsplayground.com/t

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

2008-02-01 Thread [EMAIL PROTECTED]
hi cloudream, thanks for your answer but you referenced the same mechanism I was pointing to with my link already. this won't solve things like implementing let's say jquery version 1.2 and jquery 0.8 within the same page. and that's what I'm asking for. On Feb 1, 1:00 pm, Cloudream <[EMAIL PRO

[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 alrea