$(function () {
$('#txtInput').keyup(function () {
if ($(this).val() != '') {
$('#btnSubmit').prop('disabled', false);
}
});
});
OR
$(function () {
$('#txtInput').keyup(function () {
if ($(this).val() != '') {
$('#btnSubmit').removeAttr ('disabled');
}
});
});
OR
Thank you!