On Oct 16, 2:45 pm, clockworkgeek <[email protected]> wrote: > I find IE doesn't bubble it's field-related events properly so you > still need to use `observe` for those cases. As a fix I suppose 'on' > could search it's children for fields and manually apply `observe` on > those but it wouldn't be ideal, dynamically added fields would be > exempt.
IE doesn't bubble `focus` or `blur`, but it does bubble the IE- specific `focusin` and `focusout` events. jQuery maps `focus` to `focusin` (and similarly for `blur`/`focusout`) in its event delegation stuff. I think that would be a better way to go. -- T.J. Crowder Independent Software Engineer tj / crowder software / com www / crowder software / com -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
