Belated note: in case you missed my Refresh Austin talk about Prototype/Scriptaculous, you can experience the slides without having to listen to my stammering commentary.
Belated note: in case you missed my Refresh Austin talk about Prototype/Scriptaculous, you can experience the slides without having to listen to my stammering commentary.
Comments
Bear with my picky comment, but on slide 37 you could have just did:
instead of:
I use
invoke
in later slides — on that slide I was just trying to introduce the concept ofeach
.That’s why I had to admit my comment was picky ;)
On slide 30, shouldn’t you use blindAsEventListener(); because you are expecting the ‘event’ argument to be passed into your observer?
@jdalton: That’s only necessary if you assign a handler directly to a property (like
someLink.onclick
). IE passes the event argument properly when its proprietaryattachEvent
method is used (and that’s whatEvent.observe
calls in IE).Ohhh Nice! I wasn’t aware of that. Rock!