$(this).css('border-color','red');
setTimeout(function() {
$(this).css('border-color', 'none');
},1000);
setTimeout(() => {
$(this).css('border-color', 'none');
},1000);
var that = this;
setTimeout( function() {
$(that).css('border-color', 'none');
},1000);