function ajaxCall() { $(document).ready(function() { $('#bt').click(function () { $('#books').empty(); // Clear the DIV. $.ajax({ type: 'GET', url: 'sprawdziany/testy.xml', // The file path. dataType: 'xml', success: function(xml) { $(xml).find('List').each(function() { // Append new data to the DIV element. $('#books').append( '
' + '
Nazwa sprawdzianu: ' + $(this).find('Sprawdzian').text() + '
' + '
Godzina i data: ' + $(this).find('Godz').text() + '
' + '
Miejsce: ' + $(this).find('Klasa').text() + '
' + '
'); }); } }); }); }); }