<input type="text" /> <script> document.querySelector('input').onchange = function() { var str = this.value; alert('Первая большая? ' + (str[0] == str[0].toUpperCase())); } </script>