I'm writing a form validation script and would like to validate a given field when its onblur event fires. I would also like to use event bubbling so i don't have to attach an onblur event to each individual form field. Unfortunately, the onblur event doesn't bubble. Just wondering if anyone knows of an elegant solution that can produce the same effect.
|
|
|||||
|
|
|
ppk has a technique for this, including the necessary workarounds for IE: http://www.quirksmode.org/blog/archives/2008/04/delegating%5Fthe.html |
||
|
|
|
|
You're going to need to use event capturing (as opposed to bubbling) for standards-compliant browsers and
See http://www.quirksmode.org/blog/archives/2008/04/delegating%5Fthe.html for the juicy details |
|||
|
|
|
|
aa, you can simply add the onblur event on the form, and will call the validation every time you change focus on any of the elements inside it |
||
