[jQuery] Re: Subclassing in JavaScript

2007-07-13 Thread Michael Schuerig
mely nice. For what it's worth, it looks as if an implementation based on this one will make it into Protoype.js. It may be informative to have a look at the recent discussion on the prototype-core list (on googlegroups). Michael -- Michael Schuerig mailto:[EMAIL PROTECTED] http://www.schuerig.de/michael/

[jQuery] Re: jQuery 1.1.3 breaks completely on Konqueror

2007-07-02 Thread Michael Schuerig
b.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1] is equivalent to null[1] which fails and stops any further execution of the script. Michael > On 7/2/07, Michael Schuerig <[EMAIL PROTECTED]> wrote: > > Sorry to report this here, but the site appears to be largely > > non-fu

[jQuery] jQuery 1.1.3 breaks completely on Konqueror

2007-07-02 Thread Michael Schuerig
owser = { version: b.match(/.+(?:rv|it|ra|ie|or)[\/: ]([\d.]+)/)[1], ... }; Michael -- Michael Schuerig mailto:[EMAIL PROTECTED] http://www.schuerig.de/michael/

[jQuery] Style question: holding on to an element

2007-06-25 Thread Michael Schuerig
Prototype does. For DOM access and manipulation I actually prefer jQuery's set-oriented approach. However, I value OO-style highly as a means of modularizing code. In that regard, it seems to me, that too many plugins are guilty of dumping functions into the jQuery namespace. Michael --

[jQuery] Re: easing plugin break jQuery, easing plugin needs a small fix

2007-06-24 Thread Michael Schuerig
e actually was another implementation of them. Michael -- Michael Schuerig mailto:[EMAIL PROTECTED] http://www.schuerig.de/michael/

[jQuery] Re: Getting the absolute position of an element

2007-06-17 Thread Michael Schuerig
rching the plugins. Michael -- Michael Schuerig mailto:[EMAIL PROTECTED] http://www.schuerig.de/michael/

[jQuery] Getting the absolute position of an element

2007-06-17 Thread Michael Schuerig
I'm looking for a "jQuery-native" way to get the absolute position of an element; something like Prototype's Position.cumulativeOffset(element) or YUI's YAHOO.util.Dom.getXY(element). Is there anything like this or do I have to borrow from the other libs? Michael --