$('input').on('input', function () { var val = parseInt($(this).val()); if (isNaN(val)) return; $('div').css('height', val + 'px'); });