[jQuery] each on a css class
so i have a class "positiveMessage" I use throughout the page and i
always want to fade them (FAT style).
I'm starting to catch, but I can't figure out why this only fades the
first one!
$('.positiveMessage').each(
function(){$(this).vkfade("00dd00")}
);
Shouldn't this find every element with css class "positiveMessage" and
then run vkfade on it???