1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-17 12:50:08 -07:00
2017-04-28 16:10:45 +02:00

13 lines
284 B
JavaScript

$(document).ready(function () {
$('.ajax-load').each(function () {
$self = $(this);
$.ajax({
dataType: "json",
url: $self.data('src'),
context: $self
}).done(function(data) {
$(this).html(data);
});
})
});