1
0
Fork 0
frontend/bundle.js

15 lines
418 B
JavaScript
Raw Normal View History

2023-02-05 03:04:28 +00:00
$(function() {
$('#examples').each(function(index, elem) {
$.getJSON(
'http://ksenia.causa-arcana.com/api/examples?ids=' + $(elem).data('ids'),
function(data) {
var list_items = []
data.forEach(function(item) {
list_items.push('<li>' + item[0] + ' &mdash; ' + item[1] + '</li>')
})
$(elem).html('<ul>' + list_items.join('') + '</ul>')
},
)
})
})