Ajax
$.ajax({
url: url,
dataType: 'html',
type: 'GET',
success : function(data) {
console.log(data);
},
complete: function() {
},
beforeSend:function() {
},
});
$.ajax({
url: url,
dataType: 'html',
type: 'GET',
success : function(data) {
console.log(data);
},
complete: function() {
},
beforeSend:function() {
},
});