Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Using JQuery and Prototype in same application
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  8 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
si-mon  
View profile  
 More options Nov 2 2008, 11:55 pm
From: si-mon <sijumo...@gmail.com>
Date: Sun, 2 Nov 2008 20:55:33 -0800 (PST)
Local: Sun, Nov 2 2008 11:55 pm
Subject: Using JQuery and Prototype in same application
Hi all,
Is there any problem in using both JQuery and Prototype in the same
application?

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
monmonja  
View profile  
 More options Nov 3 2008, 9:11 am
From: monmonja <almondmend...@gmail.com>
Date: Mon, 3 Nov 2008 06:11:42 -0800 (PST)
Local: Mon, Nov 3 2008 9:11 am
Subject: Re: Using JQuery and Prototype in same application
Nope, try to use both and insert  <script>jQuery.noConflict()</
script>
documentation at http://docs.jquery.com/Core/jQuery.noConflict

Monmonja
http://monmonja.com/blog/

On Nov 3, 12:55 pm, si-mon <sijumo...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
mark_story  
View profile  
 More options Nov 3 2008, 1:48 pm
From: mark_story <mark.st...@gmail.com>
Date: Mon, 3 Nov 2008 10:48:42 -0800 (PST)
Local: Mon, Nov 3 2008 1:48 pm
Subject: Re: Using JQuery and Prototype in same application
A better question is why?

-Mark

On Nov 2, 11:55 pm, si-mon <sijumo...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Samuel DeVore  
View profile  
 More options Nov 3 2008, 2:13 pm
From: "Samuel DeVore" <sdev...@gmail.com>
Date: Mon, 3 Nov 2008 12:13:40 -0700
Local: Mon, Nov 3 2008 2:13 pm
Subject: Re: Using JQuery and Prototype in same application

On Mon, Nov 3, 2008 at 11:48 AM, mark_story <mark.st...@gmail.com> wrote:

> A better question is why?

Maybe if you have an app that uses prototype but one wants to play
with your amazing debug kit ;)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
monmonja  
View profile  
 More options Nov 3 2008, 5:11 pm
From: monmonja <almondmend...@gmail.com>
Date: Mon, 3 Nov 2008 14:11:03 -0800 (PST)
Local: Mon, Nov 3 2008 5:11 pm
Subject: Re: Using JQuery and Prototype in same application
If your using plugins, check if the plugin has the compatibility to
work with other library, if not remember to not use $ for  jquery
stuff, most of the time you would be mixing them up. I would also
suggest to just drop one of them. :)

On Nov 4, 3:13 am, "Samuel DeVore" <sdev...@gmail.com> wrote:

> On Mon, Nov 3, 2008 at 11:48 AM, mark_story <mark.st...@gmail.com> wrote:

> > A better question is why?

> Maybe if you have an app that uses prototype but one wants to play
> with your amazing debug kit ;)

> > -Mark

> > On Nov 2, 11:55 pm, si-mon <sijumo...@gmail.com> wrote:
> >> Hi all,
> >> Is there any problem in using both JQuery and Prototype in the same
> >> application?

--
Monmonja
http://monmonja.com/blog/

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
si-mon  
View profile  
 More options Nov 3 2008, 11:10 pm
From: si-mon <sijumo...@gmail.com>
Date: Mon, 3 Nov 2008 20:10:15 -0800 (PST)
Local: Mon, Nov 3 2008 11:10 pm
Subject: Re: Using JQuery and Prototype in same application
Actually, we are a group working on a single project, and each one
having expertise in different libraries. So this question...
Anyhow, thanks for the very useful information. This will help us a
lot...
-- si-mon

On Nov 3, 5:11 pm, monmonja <almondmend...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Giaco  
View profile  
 More options Nov 4 2008, 10:45 am
From: Giaco <kont...@stoeck-it.de>
Date: Tue, 4 Nov 2008 07:45:41 -0800 (PST)
Local: Tues, Nov 4 2008 10:45 am
Subject: Re: Using JQuery and Prototype in same application
Since both frameworks use the $()-function, you either
 - have to jump through loops to make it working for both of them
 - use the jQuery alias function jQuery()
 - or, my favorite:

if you use the short form to wait till page load of DOM of jQuery:
"jQuery(function(){/* yourcodehere */})"
you can just input the $ as a function parameter: jQuery(function($){/
* yourcodehere */})

With that you can safely use the $-sign within the curled brackets.

On Nov 4, 5:10 am, si-mon <sijumo...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
mark_story  
View profile  
 More options Nov 4 2008, 6:03 pm
From: mark_story <mark.st...@gmail.com>
Date: Tue, 4 Nov 2008 15:03:57 -0800 (PST)
Local: Tues, Nov 4 2008 6:03 pm
Subject: Re: Using JQuery and Prototype in same application
si-mon:  I didn't mean to offend you, it was a honest question.  To me
its not worth the extra work.  However it can be done but there is a
lot of hoop jumping. You can do it if you load jQuery first. And force
it in to compatibility mode.

Samuel:  You can configure which javascript is used now! :)  There is
support for jQuery, Prototype, mootools, and CSS only.  And I think
joel perras is working on a YUI compatible toolbar script.

-Mark

On Nov 3, 11:10 pm, si-mon <sijumo...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google