[jQuery] Re: jQuery and Mootools Problem

2007-08-31 Thread alexanmtz
theres a solution posted by Rey relative a discussion on mootools forum... this is the link http://groups.google.com/group/jquery-en/browse_thread/thread/9737e52028077d5c I hope it can be helpfull... On 23 ago, 18:53, Yehuda Katz [EMAIL PROTECTED] wrote: We could probably fix this rather

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Sekmet
Hi, i have same problem.. and i already try include mootools before jQuery and then .noConflict() And this problem with mootools is not recognized as a bug by mootools developer :( All the best Carlos On Aug 22, 5:59 pm, John Resig [EMAIL PROTECTED] wrote: Try includingMootools, then jQuery,

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Yehuda Katz
It looks like Mootools is also using the $events expando, but differently... it expects it to be an object that can have a keys attribute. -- Yehuda On 8/22/07, Sekmet [EMAIL PROTECTED] wrote: Hi, i have same problem.. and i already try include mootools before jQuery and then .noConflict()

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Brandon Aaron
Time to namespace our expandos. -- Brandon Aaron On 8/23/07, Yehuda Katz [EMAIL PROTECTED] wrote: It looks like Mootools is also using the $events expando, but differently... it expects it to be an object that can have a keys attribute. -- Yehuda On 8/22/07, Sekmet [EMAIL PROTECTED]

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread kj187
thx for answer.. is there no quick solution ? i need both librarys greetz julian On 23 Aug., 14:36, Brandon Aaron [EMAIL PROTECTED] wrote: Time to namespace our expandos. -- Brandon Aaron On 8/23/07, Yehuda Katz [EMAIL PROTECTED] wrote: It looks like Mootools is also using the

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Brandon Aaron
If you are comfortable with modifying the source you could do a find and replace on $events and change it to something like $jqEvents. Just note that some plugins like Copy Events also expects the $events expando ... so you would have to do the same thing for those plugins. -- Brandon Aaron On

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread John Resig
Yes, just include Mootools /then/ jQuery. --John On 8/23/07, kj187 [EMAIL PROTECTED] wrote: thx for answer.. is there no quick solution ? i need both librarys greetz julian On 23 Aug., 14:36, Brandon Aaron [EMAIL PROTECTED] wrote: Time to namespace our expandos. -- Brandon Aaron

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Brandon Aaron
hmm ... wouldn't that still cause problems with the $events expando? -- Brandon Aaron On 8/23/07, John Resig [EMAIL PROTECTED] wrote: Yes, just include Mootools /then/ jQuery. --John On 8/23/07, kj187 [EMAIL PROTECTED] wrote: thx for answer.. is there no quick solution ? i need both

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread John Resig
At least it wouldn't cause it on load? Maybe if you just do the window load event with mootools and the document ready with jQuery? --John On 8/23/07, Brandon Aaron [EMAIL PROTECTED] wrote: hmm ... wouldn't that still cause problems with the $events expando? -- Brandon Aaron On 8/23/07,

[jQuery] Re: jQuery and Mootools Problem

2007-08-23 Thread Yehuda Katz
We could probably fix this rather easily by allowing the user to specify what the expand should be called ;) -- Yehuda On 8/23/07, John Resig [EMAIL PROTECTED] wrote: At least it wouldn't cause it on load? Maybe if you just do the window load event with mootools and the document ready with

[jQuery] Re: jQuery and Mootools Problem

2007-08-22 Thread John Resig
Try including Mootools, then jQuery, then doing the .noConflict() stuff and see if that works. --John On 8/22/07, kj187 [EMAIL PROTECTED] wrote: Hi, i use jquery and mootools. But i have a problem, after loading the site, i became an js error this.$events[type].keys has no properties