How do i load multiple html files and putting them into a specified html element?
I tried with no changes:
$('#asd').load('file.html,pippo.html');
How do i load multiple html files and putting them into a specified html element?
I tried with no changes:
$('#asd').load('file.html,pippo.html');
you could get multiple items and add them to the element.
jQuery.ajaxSetup({ async: false }); //if order matters
$.get("file.htm", '', function (data) { $("#result").append(data); });
$.get("pippo.htm", '', function (data) { $("#result").append(data); });
jQuery.ajaxSetup({ async: true }); //if order matters
Try this, using deferred objects.
var defArr = [];
defArr.push($.get('file.html'));
defArr.push($.get('pippo.html'));
$.when.apply($,defArr).done(function(response1,response2){
$('.result').html(response1[2].responseText + response2[2].responseText);
});