$(document).ready(function(){
var nm;
$.ajax({
type: „GET” ,
url: „notowania.xml” ,
dataType: „xml” ,
success: function(xml) {
$(xml).find(’person’).each(function(){
nm= $(this).text()
$(„#temp”).html(nm);
}
}
});
});