I have defined event handlers according to their classnames in the latest project that I'm working on.
for ex. all element with the class name "foo" should respond in a particular way on change event. and all elements with the class name "bar" should respond in some other way.
Now some of my elements fall under both classes i.e. class="foo bar" and they should respond in both ways. Right now, only one of the event handler function is being called.
How can I make both the responses execute simultaneously.