> 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?
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?
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:
> 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?
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:
> 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:
> > 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?
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:
> 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:
> > 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?