This lib allows you to include internal and external files/sources into your html DOM.
<div class="ajax" data-source="http://www.diegomengarda.com.br/api/ajax.php"></div>
var ajaxLoader = new DmAjaxLoader('.ajax');
<div class="ajax"></div>
var ajaxLoader = new DmAjaxLoader('.ajax', {
method: 'POST',
source: 'http://www.diegomengarda.com.br/api/ajax.php'
params: {
name: 'test',
value: 200
}
});
var ajaxLoader = new DmAjaxLoader('.ajax');
ajaxLoader.destroy();