When you add multiple handlers to handle an event what is the execution order?
I have some default code to handle the change event for input fields that I load for allow of my forms in the application.
On some of the forms I add additional change event handler for certain input fields.
What is the execution order for these handlers? I want my local handler to run before the default handler. Is there a way to accomplish this?
Terry