$(document).on('click','#target',function(){
$(this).css({'background-color':'green'});
setTimeout(function($el) {
$('#target').css({'background-color':'red'})
},1000);
changer();
});
function changer(){
$(document).on('mouseover','#target',function(){
alert('YES');
});
}