You can get multiple items and add them to the item.
jQuery.ajaxSetup({ async: false });
$.get("file.htm", '', function (data) { $("#result").append(data); });
$.get("pippo.htm", '', function (data) { $("#result").append(data); });
jQuery.ajaxSetup({ async: true });
source
share