if (firstEnter) {
firstEnter = false;
document.getElementById('test').style.color="red";
}
var input = document.getElementById('test');
var result = document.getElementById('result');
input.onkeyup = input.oncopy = input.onpaste = input.oncut = (function() {
return function() {
if (input.value[0] == 1) {
input.style.color="red";
}
result.innerHTML = this.value;
}
})();