VINGLI 28in Antique Copper Pedestal Bird Bath With Solar Fountain, Copper, May Be Missing Hardware
{
img.classList.add('hidden');
img.classList.remove('block');
});
// Show selected image
document.getElementById(tabID).classList.remove('hidden');
document.getElementById(tabID).classList.add('block');
// Update button styles
event.currentTarget.parentElement.parentElement.querySelectorAll('button').forEach(btn => {
btn.classList.remove('border-cyan-600');
btn.classList.add('border-gray-200');
});
event.currentTarget.classList.remove('border-gray-200');
event.currentTarget.classList.add('border-cyan-600');
}
// Handle content tabs
else if (containerID === 'tabs-id') {
// Update button styles
document.querySelectorAll('.tab-button').forEach(btn => {
btn.classList.remove('text-cyan-600', 'border-cyan-600');
btn.classList.add('text-gray-500', 'border-transparent');
});
event.currentTarget.classList.remove('text-gray-500', 'border-transparent');
event.currentTarget.classList.add('text-cyan-600', 'border-cyan-600');
// Hide all tab content
document.getElementById('tab-description').classList.add('hidden');
document.getElementById('tab-description').classList.remove('block');
document.getElementById('tab-bid-history').classList.add('hidden');
document.getElementById('tab-bid-history').classList.remove('block');
// Show selected tab
document.getElementById(tabID).classList.remove('hidden');
document.getElementById(tabID).classList.add('block');
}
}