I am looking for some function that:
Though it's not very elegant but it's a way to achieve the thing you want, try this code snippet :
var elements = $('.obs_list');
elements
.delay(500)
.animate({
'background-color' : '#ffcc33'
//see the use of proxy here to change the scope of callback function
}, 200, $.proxy(function(){
this
.css({ 'color' : 'red' });
}, elements)
You can find more about proxy here.