Problem with slideUp wildcard calback
- $(id + '>*').slideUp('slow', function(){
alert(id);
});
I expected this would slideUp all first children of 'id' then alert the 'id'
Instead it calls alert(id) immediately one time for each child.
Am I missing something?