[jQuery] Re: Question about Tutorial: Find me: Using selectors and events

2009-05-26 Thread Mattsson
Thanks a bunch mkmanning, your brief answer had loads of meaning for me: a) we may look in the jQuery source file to see what a jQuery function does -- jQuery is after all simply JavaScript b) we can name any JavaScript object by using a colon after a name

[jQuery] Re: Question about Tutorial: Find me: Using selectors and events

2009-05-26 Thread Mattsson
A partial answer to my question on the difference between mouseenter and mouseover, in the jQuery documentation, Events/mouseenter (http:// docs.jquery.com/Events/mouseenter#fn), it states, then illustrates, that mouseover fires when the pointer moves into or out from child element, while

[jQuery] Re: Question about Tutorial: Find me: Using selectors and events

2009-05-23 Thread mkmanning
A quick look in the jQuery source is always a good start: hover: function(fnOver, fnOut) { return this.mouseenter(fnOver).mouseleave(fnOut); } On May 22, 9:28 pm, Mattsson carol.matts...@gmail.com wrote: Hello, I'm very new to jQuery and trying out some of the