In my XML file I've got multiple entries for \[code\]satz\[/code\]:\[code\]var aufz = $(this).find('satz').text() \[/code\]How can I get just the first entry/node? I tried:\[code\]var aufz = $(this).find('satz[1]').text()\[/code\]but it won't work. Thanks for your help!\[code\]$(document).ready(function() { $.ajax({ type: "GET", url: "saetze.xml", dataType: "xml", success: function(xml) { $(xml).find('kategorie[id="aufzaehlung"]').each(function() { var aufz = $(this).find('satz').text() $('<p class="aufz"></p>').html(aufz).appendTo('.aufz'); }); } });});\[/code\]