mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-18 05:10:07 -07:00
13 lines
284 B
JavaScript
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);
|
|
});
|
|
})
|
|
}); |