cookitee,
document.addEventListener("DOMContentLoaded", function() {
function close(el) {
el.parentElement.remove();
}
let a = document.querySelectorAll('.pic');
const arr = Array.prototype.slice.call(a);
arr.forEach(e => {
e.addEventListener('click', close.bind(null, e));
});
});