[Prototype-core] Re: Prototype in 10 steps... what are they?

2008-12-11 Thread joe t.
On Nov 18, 5:11 am, T.J. Crowder [EMAIL PROTECTED] wrote: ... 1. Master the $ and $$ Functions 2. Use instance methods to perform common tasks on elements 3. Master event observing (including delegation) 4. Push the envelope with Ajax 5. Use Enumerable to manage collections 6. Master

[Prototype-core] Re: Prototype in 10 steps... what are they?

2008-11-19 Thread Yanick
I agree with Jerod about the binding part. Here's the modified list that I would suggest (probably that was my own learning curve) : 1. Master the $ function 2. Use instance methods to perform common tasks on elements 3. Master event observing 4. Use Enumerable to manage collections 5. Master

[Prototype-core] Re: Prototype in 10 steps... what are they?

2008-11-18 Thread Tobie Langel
I'd add event delegation in there. On Nov 18, 7:02 am, Tom Gregory [EMAIL PROTECTED] wrote: Good list. I'd add function chaining and element selectors ($$, et al).  ... But   that pushes the list to eleven. #6 is vague ...  it could mean many different things (even contain its   own list

[Prototype-core] Re: Prototype in 10 steps... what are they?

2008-11-18 Thread T.J. Crowder
That's a great list. It's difficult to know where to stop in terms of teaching JavaScript as opposed to teaching Prototype; to get the best out of the latter, you're well-served understanding the former in ways that many (most?) still don't. Frankly, only small comments -- the list looks good

[Prototype-core] Re: Prototype in 10 steps... what are they?

2008-11-18 Thread Andrew Dupont
On Nov 18, 4:11 am, T.J. Crowder [EMAIL PROTECTED] wrote: That list falls neatly into two categories: Basic techniques not requiring *too* much in terms of conceptual understanding (the first five items), then more conceptual (and powerful) stuff (the last five items). I probably would

[Prototype-core] Re: Prototype in 10 steps... what are they?

2008-11-18 Thread Jerod Venema
I like TJs list. However, I'd move binding up in priority. Despite it being a more advanced use of javascript, it's vital to understanding the items listed as 3 and 4 (events and AJAX [callbacks]). -Jerod Venema On Tue, Nov 18, 2008 at 8:57 PM, Andrew Dupont [EMAIL PROTECTED]wrote: On Nov

[Prototype-core] Re: Prototype in 10 steps... what are they?

2008-11-17 Thread Tom Gregory
Good list. I'd add function chaining and element selectors ($$, et al). ... But that pushes the list to eleven. #6 is vague ... it could mean many different things (even contain its own list of 10!) TAG On Nov 17, 2008, at 10:56 PM, Andrew Dupont wrote: I'm thinking about how we can