Mike London wrote:But wouldn't you need to assign the onBlur() event to some function for every control on the form?
No. Why? A single event handelr on the form can handle the blur event of all its children.
Perhaps I'm missing your point.
I think you are.
I forget if you are one of the posters who has my jQuery book. If so, read the first section of chapter 4 which describes how events work in the browsers without jQuery.
If not, look up "event bubbling". It's needless to put the same event handler on multiple form controls when you can just do it once.