SWITCHPick upPepOurst8 LogisticsCourier Guy
Standard Delivery
Clothes. Community. For the community
function toggleDeliveryOptions() {
const optionsDiv = document.getElementById('delivery-options');
const toggleBtn = document.getElementById('delivery-toggle-btn');
if (optionsDiv.style.display === 'none' || optionsDiv.style.display === '') {
optionsDiv.style.display = 'flex';
toggleBtn.textContent = 'HIDE';
} else {
optionsDiv.style.display = 'none';
toggleBtn.textContent = 'SWITCH';
}
}