I have a number of elements on the a page which are hidden by default. Depending on a user behaviour, one might be shown (using jquery's show()). Similar, one might be hidden (using jquery's hide()).
All these elements have the same css class. Is there a way to create a listener for elements with a specific class to see if any of them have changed between hide/show?
Thanks!