<form>
<input type="text" id="input">
</form>
<p id="demo"></p>
input.addEventListener('input', function () {
if (this.value.length > 140) {
demo.textContent = 'Ваш текст';
} else {
demo.textContent = '';
}
});
$('#input').on('input', function() {
if ($(this).val().length > 140) {
$('#demo').text('Ваш текст');
} else {
$('#demo').text('');
}
});