$(document).on('input', 'input[type="text"]', function () {
console.log($(this).val().length);
});
$(function() {
$("input[id='text-count']").keyup(function count(){
number = $("input[id='text-count']").val().length;
$("#count").html(+number);
});
});