var items = $(".gal-item");
$(".gal-item").addClass("test");
Array.from($(".gal-item"));
$('a').on('click', async function(e) {
e.preventDefault();
$('h2').hide();
let mrd = await showInfo();
const content = mrd.map(function(res, elem) {
return `
<div class="box">${res.website}, элемент ${elem}</div>
`
}).join('');
const el = $(content);
$('body').find('h2').after(el);
el.on('click', function() {console.log($( this ).text())});
});