Not quite sure how to arrange this question.
Basically, I have a page with 4 forms all in separate tabs, (3 for each department and an admin overview with all forms on), what I would like to do is once the input has changed in one of the 3 departmental forms duplicate that input into the same field in the admin form.
What I'm currently using is the following
jQuery(".volume").keyup(function(){
var volume = jQuery(".volume").val();
jQuery('.volume').val(volume);
});
this works fine in it self, but what I would like is to be able to have a little function like this that automatically works on any input, textarea and select.
Would anyone be able to advise me on how to put something like that together?
Thanks in advance.