<input name="tel_1_1" oninput="checkField()" type="text" id="tel_1_1" value="1" style="width:300px;background:#FFEEEE" />
<input name="tel_1_1" oninput="checkField()" type="text" id="tel_1_2" value="2" style="width:300px;background:#FFEEEE" />
<input name="tel_1_1" oninput="checkField()" type="text" id="tel_1_3" value="3" style="width:300px;background:#FFEEEE" />
<script language="javascript">
function checkField () {
if (this.value =="") {
this.style.background = 'red';
} else {
this.style.background = 'white';
}
}</script>
все-равно не работает мне кажется проблем в обращении this.value, но как правильно сделать?