I have an input box with id #tDate. I use jquery to update the value in the field but an on change event for the field is not working. The on change events works fine if I manually update the value in the field.
Below is my code
$("#tDate").val("2018/04/30");
//Then I have this on change event
$("#tDate").on("change", function (e, args){
alert('value changed');
});
I would like the on change events to work even if the input box value is changed with JQuery.
Thank you.