I've got this function which runs for each instance of 'fullName':
$(xml).find("fullName").each(function(){ ... });
But there is really only ever one instance and I don't want to be using each, is there some other way to create this function without using each. Maybe just:
$(xml).find("fullName").it(function(){ ... });
first(), or explain what function it is, and there might be a suitable jQuery method to use.