[jquery-dev] Re: [Dumb] find() method normal behavior ?

2009-05-27 Thread Daniel Friesen
Yes, .andSelf() exists specifically for the case where someone wants .find() to also include the previous selection. ~Daniel Friesen (Dantman, Nadir-Seen-Fire) [http://daniel.friesen.name] Erik Beeson wrote: I believe that's expected behavior. For your second example, I think you'd want to

[jquery-dev] Re: span displays on next line while calling show('slow') method

2009-05-27 Thread Thijs Houtenbos
A small sidenote about fade: in IE8 fadeIn/fadeOut doesn't always work as expected... (this doesn't happen in IE6/7)When the CSS isn't just right any child elements inside the faded container are not faded but appear instantly. In my case I solved it by not using 'position' for the children...

[jquery-dev] Re: UI resizable bug?

2009-05-27 Thread Richard D. Worth
On Tue, May 26, 2009 at 9:10 AM, Omen yvn.o...@gmail.com wrote: Greetings. I'am writing image area selection feature with jQuery 1.3.2 and jQuery UI 1.7.1 and encountered the next problem. I used Eyecon Interface library great example and tried to port it to the jQuery UI, but as you can

[jquery-dev] Re: [Dumb] find() method normal behavior ?

2009-05-27 Thread yodza
Great ! The documentation has been updated to avoid misleading. http://docs.jquery.com/Traversing/find#expr On May 27, 7:59 am, Daniel Friesen nadir.seen.f...@gmail.com wrote: Yes, .andSelf() exists specifically for the case where someone wants .find() to also include the previous selection.

[jquery-dev] Adding SVG class (className) support to jQuery

2009-05-27 Thread David Baird
Overview of the problem: The HTML and SVG DOM extensions have differing interface definitions for className. For the HTML DOM, className is a DOMString [1]. For SVG, className is defined as type SVGAnimatedString [2] (instead of good old DOMString) in SVGStylable [3]. (Furthermore, not all SVG