Problem with slideUp wildcard calback

Problem with slideUp wildcard calback

  1. $(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?