2

I've found a similar answer jQuery load multiple html files in one element but I'm looking a solution with a callback once everything's is loaded. It doesn't have to be jQuery, can be another js library.

$.get("file.htm", '', function (data) { $("#result").append(data); });
$.get("pippo.htm", '', function (data) { $("#result").append(data); });
Community
  • 1
  • 1
  • This is a similar question [link](http://stackoverflow.com/questions/9898813/jquery-wait-till-multiple-get-requests-are-successully-processed). – Hexaquark Jul 06 '15 at 16:08
  • Do you mean once everything inside the file you are loading is loaded? – Enijar Jul 06 '15 at 16:15

0 Answers0