I have a text field that is modified/updated when a user clicks on a date on a pop-up calendar.
When the text field is changed, I need a separate function to execute.
Is there any way to know that the text field has been programatically changed?
I have successfully implemented using the onchange() function for the text field, but it only appears to fire when the user actually types something new in the field and not when a different function updates its value.
Also, I am trying to avoid modifying the pop-up calendar code to include a call to my function since it is a frequently used piece of code that is linked to in several places already without the desire for this added functionality.
Start Free Trial