hook all form submit button click events
how do I hook a button click event so that my handler fires first but does not affect the firing of other click handlers for the same button?
What I want to do is hook all the form submit button click events. When a submit button is clicked, my handler will stuff some hidden fields into the form the button is contained within. Then the handler returns and the built in form submit button handler posts the form back to the server.
thanks,