Key Up Functionality
HTML
<input id="test" type="text"/>
JavaScript
$('#test').keyup(function () {
console.log('hello');
});
$('#test').keyup();
$("#filedNameId").keyup();
<input id="test" type="text"/>
$('#test').keyup(function () {
console.log('hello');
});
$('#test').keyup();
$("#filedNameId").keyup();