I need to add an callback function to an css change event. Does this kind of event exists and if so, how to use it ? I tried the following but that didn't work.
$('#websites_table').find('tr').each(function(){
$(this).css().change(function(){
alert('changed');
});
});
With friendly greetings, Bob