
An Ocean Without Plastic
Picture It!
An Ocean
Without Plastic
Picture It!
We’re on a mission to recover 100,000,000 kg of
plastic waste from the oceans. Join us!
We’re on a mission to recover
100,000,000 kg of plastic waste
from the oceans. Join us!
document.addEventListener('DOMContentLoaded', function () {
const individuLink = document.getElementById('individual-btn');
const businessLink = document.getElementById('business-btn');
if (individuLink) {
individuLink.addEventListener('click', function (event) {
event.preventDefault();
const currentURL = this.href;
const newURL = `${currentURL}?user=individual`;
window.location.href = newURL;
});
} else {
console.error('Error.');
}
if (businessLink) {
businessLink.addEventListener('click', function (event) {
event.preventDefault();
const currentURL = this.href;
const newURL = `${currentURL}?user=business`;
window.location.href = newURL;
});
} else {
console.error('Error.');
}
});