As you highlighted, an event is changefired only when text is entered into focus. Instead, bind to keyup:
$('#txtAccountNo').on('keyup', function() {
$('label[for="txtAccountNo"]').append('<span class="support">loading...</span>')
});
- script , , change, , , , - . , :
$('#txtAccountNo').on('keyup change', function() { ... });