$(function(){ $('#clave').keyup(function(){ var _this = $('#clave'); var clave = $('#clave').val(); _this.attr('style', 'background:white!important'); if(clave.charAt(0) == ' '){ _this.attr('style', 'background:red!important'); } if(_this.val() == ''){ _this.attr('style', 'background:red!important'); } }); $('#clave2').keyup(function(){ var clave = $('#clave').val(); var clave2 = $('#clave2').val(); var _this = $('#clave2'); _this.attr('style', 'background:white!important'); if(clave != clave2 && clave2 != ''){ _this.attr('style', 'background:red!important'); } }); });