Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since events bubble up in the DOM, it seems like a change event should be able to reach any container element (e.g. div, table, or ul elements). Therefore, it seems like any such elements should support the onchange attribute. However, it seems like only a few element types support this in the official standard.

Despite this, I was able to give a tbody an onchange attribute, which ran when I changed the contents of a text input within the tbody.

Will I experience the same thing if I use some other major browser + OS combination?

share|improve this question
3  
Remember, non-standard features have non-uniform results – Justin Johnson Jul 21 '10 at 1:49
Not always. For example, clientWidth is a non-standard property of elements, yet it works on practically all browsers: quirksmode.org/dom/w3c_cssom.html#elementview developer.mozilla.org/en/DOM/element.clientWidth#Specification – allyourcode Jul 24 '10 at 6:44

1 Answer

up vote 4 down vote accepted

As described in the DOM Level 2 Events Specification, the change event is valid only for INPUT, SELECT, and TEXTAREA elements.

Edit: As @no kindly comments, the event according the W3C Standard bubbles up, the purpose of this is clearly to catch the event on other elements.

But I wouldn't recommend you to expect cross-browser bubbling with change for one reason: IE.

In their proprietary Event Model implementation, they explicitly describe that the change event does not bubble...

share|improve this answer
2  
As I stated in my question, I'm already familiar with the fact that only a few element types support this attribute. My question is, What actually happens in practice? – allyourcode Jul 21 '10 at 1:50
1  
@allyourcode You should rarely, if ever, rely on non-standard functionality. – George Marian Jul 21 '10 at 1:51
1  
CMS: The spec is a bit confusing here. It says that the change event is only valid for the elements you listed, but right under that it says the change event bubbles. Since none of those elements can be nested inside of each other, it can be assumed that the reason for bubbling is to catch the event on non-input-like elements... if this isn't the intended behavior, the spec would have made this a non-bubbling event. It seems the correct interpretation of the spec is that the change event should be catchable on parent elements of the input, select, or textarea the event originated from. – Dagg Nabbit Jul 21 '10 at 2:01
CMS: shh... maybe if we ignore IE it will just quietly go away... – Dagg Nabbit Jul 21 '10 at 2:15
@no, hehe, IE... isn't strange? they do exactly the opposite from W3C... – CMS Jul 21 '10 at 2:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.