//Image paths var defaultImage = './img/default-image.png' var img1_1 = './img/module1/hunting-season-1.svg'; var img1_2 = './img/module1/hunting-season-2.svg'; var img1_3 = './img/module1/hunting-season-3.svg'; var img2_1 = './img/module2/bag-limits-1.svg'; var img2_2 = './img/module2/bag-limits-2.svg'; var img2_3 = './img/module2/bag-limits-3.svg'; var img3_1 = './img/module3/storm-mitigation-1.svg'; var img3_2 = './img/module3/storm-mitigation-2.svg'; var img3_3 = './img/module3/storm-mitigation-3.svg'; var img4_1 = './img/module4/fragmentation-mitigation-1.svg'; var img4_2 = './img/module4/fragmentation-mitigation-2.svg'; var img4_3 = './img/module4/fragmentation-mitigation-3.svg'; var img5_1 = './img/module5/drought-mitigation-1.svg'; var img5_2 = './img/module5/drought-mitigation-2.svg'; var img5_3 = './img/module5/drought-mitigation-3.svg'; function swapImage(parentElementID, imageToSwap){ parent = document.getElementById(parentElementID); parent.innerHTML = ''; img = document.createElement('img'); img.setAttribute('src', imageToSwap); img.setAttribute('class', 'img-fluid'); parent.appendChild(img); }