Key Up Functionality

by Suryar Praveen

HTML

<input id="test" type="text"/>

JavaScript

$('#test').keyup(function () {
    console.log('hello');
});

$('#test').keyup();

$("#filedNameId").keyup();