I have a textbox whose text is expected to be changed from the jquery code.
It is not firing when the value assinged from jquery code however it is firing when I change the text by key press.
Below is HTML and JQuery which i am using
<input type="text" id="txtProjectName"/>
$("#txtProjectName").on('change keyup paste mouseup', function () {
alert('Changed');
});
What modifications would require here? please assist.