I think you iterate over members, not names:
success: function(xml) {
$(xml).find('members').each(function(){
$(this).find("name").each(function(){
var name = $(this).text();
alert(name);
});
});
}
Or maybe your XML should looks like:
3422345
Bill Gates
232311
Bob Barker