So, what I want is basically to attach a javascript handler to a form, that whenever one of the form input boxes / select boxes is changed or clicked on, this handler would be called with the id of the element that was changed.
The reason I was wondering about this is because I already have this form that has about 50 input boxes, and I need to append text into a different text box each time an action occurs on any of the 50 input boxes. I know this could be done by attaching a function to each of the 50 text boxes but it seems like there should be an easier way?