10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
function makeImagesClickeable() {
|
|
document.querySelectorAll("img").forEach(img => {
|
|
img.addEventListener("click", e => window.open(e.target.src))
|
|
});
|
|
}
|
|
|
|
window.addEventListener('load', (event) => {
|
|
makeImagesClickeable();
|
|
});
|