[jQuery] Re: Recommendation Required - Custom Classes Library

2009-02-06 Thread Neil Craig
Note, that this applies to Mootools 1.11. I haven't touched version 1.2+, I'm sure they differ a lot. On Jan 23, 2:30 pm, Balazs Endresz wrote: > Then what if you just use Class.Extras and all its dependencies as it > is? Now that sounds too easy :) > > On Jan 23, 9:21

[jQuery] Re: jQuery 1.3.x & XPath

2009-02-06 Thread Neil Craig
Mmmm, haven't tried that. Thanks! On Jan 29, 8:33 am, Klaus Hartl wrote: > On 29 Jan., 06:05, Neil Craig wrote: > > > I have tried it, but it yields no results when searching for elements. > > > What I loved about the xpath functionality was that I could have used >

[jQuery] Re: jQuery 1.3.x & XPath

2009-01-28 Thread Neil Craig
, Karl Swedberg wrote: > On Jan 28, 2009, at 6:43 AM, Neil Craig wrote: > > > > > Earlier version of jQuery allowed one to search for elements using > > XPath, but after the implementation of the Sizzler selector engine, > > the XPath support was lost, or so it seems. &

[jQuery] jQuery 1.3.x & XPath

2009-01-28 Thread Neil Craig
Earlier version of jQuery allowed one to search for elements using XPath, but after the implementation of the Sizzler selector engine, the XPath support was lost, or so it seems. Any comments?

[jQuery] Re: Recommendation Required - Custom Classes Library

2009-01-23 Thread Neil Craig
and Class, and hack it to work with jQuery ... now that sounds > like a whole new framework :) > I don't know Mootools that much at all but maybe it's not as hard as > it sounds... > > On Jan 21, 8:18 am, Neil Craig wrote: > > > Bump :) > > > On Jan 20,

[jQuery] jQuery.support & IE6 or later

2009-01-21 Thread Neil Craig
I fully understand why support detection is considered much better than browser sniffing. But I have yet to see a way to detect the flash/ selectbox bleed-through issue that exists in IE version 6 or earlier. For that reason, I think that jQuery.browser should be maintained in future releases of

[jQuery] Re: Recommendation Required - Custom Classes Library

2009-01-20 Thread Neil Craig
Bump :) On Jan 20, 10:36 am, Neil Craig wrote: > I was wondering, which Custom Classes Library is best to use along > with jQuery. Up to now, I've been using Mootools to create custom > classes that can be easily extended through its inheritance model. It > also has custom e

[jQuery] Re: Class selectors not working when using jQuery 1.3 with Mootools 1.11

2009-01-20 Thread Neil Craig
ixed in the trunk. > > I suspect this is > it:http://github.com/jeresig/sizzle/commit/0a9df6e0b68a91dd1f59bfd6e7941... > > On Jan 20, 3:26 am, Neil Craig wrote: > > > Hi > > > I'm working on a project that used to implement Mootools 1.11. It has > >

[jQuery] Re: loading jquery

2009-01-20 Thread Neil Craig
This link might help http://ajaxpatterns.org/On-Demand_Javascript On Jan 20, 10:39 am, slava wrote: > Hi, > I am loading jQuery from a script inside a page and need to execute > next function right after jQuery loads. What would be the best way to > do this? > So far I have tried using a timer

[jQuery] Recommendation Required - Custom Classes Library

2009-01-20 Thread Neil Craig
I was wondering, which Custom Classes Library is best to use along with jQuery. Up to now, I've been using Mootools to create custom classes that can be easily extended through its inheritance model. It also has custom events that I have used extensively. Which library do you recommend that has t

[jQuery] Class selectors not working when using jQuery 1.3 with Mootools 1.11

2009-01-20 Thread Neil Craig
Hi I'm working on a project that used to implement Mootools 1.11. It has been decided however that we switch over to jQuery since it is much faster and more light-weight. However, because we have created numerous widgets in Mootools, we still have to use it while the jQuery equivalent widgets ar

[jQuery] Disable/Enable jQuery Added Events

2008-11-27 Thread Neil Craig
Something I would like to do is to add several events handlers to an element and control the firing by enabling & disabling it. For example: jQuery(".sample").click(function() { // do something }).disable(); Clicking should not fire the event until jQuery(".sample").enable() has been called. Ha