I need to change the color of all child elements (full depth) of the given selector.
At run time I do not know the exact HTML markup of the children, ... just the wrapping elements class.
I have tried the following, but to no avail
$('.cat_title *').each( function () { $(this).css('color', color ); });
$('.cat_title *').css('color', color+'!important' );
$('.cat_title *').css('color', color );
Any pointer in the right direction would be greatly appreciated.