Cushy Touch Camisole N Suspender Skirt for Nursing Moms
Motherly's pregnancy wear meets all of the needs of expectant mothers.
Choose from a variety of nursing bras and lounge wear and camisole sets for the relaxed indoor or outdoor experience. All products are available in soothing neutral-colored tone for everyday wear. The smooth soft cotton fabric is so comfortable so that you can wear it while pregnant or nursing or normally.
Key features:
- Comfortable Modal cotton fabric
- Solid soothing color for everyday uses
- Nursing shirt top with suspender skirt
- Simple and natural style
- Soft Modal Cotton fabric is appropriate for all season -summer, winter, spring, autumn
- Appropriate wear during pregnancy, lounge wear or postpartum use.
function filterVariantImages(selectedTitle) {
const allImages = document.querySelectorAll('.variant-image');
allImages.forEach(image => {
const altText = image.getAttribute('data-alt');
if (!altText || altText.trim() === selectedTitle.trim()) {
image.style.display = 'block';
} else {
image.style.display = 'none';
}
});
}
document.addEventListener("DOMContentLoaded", function() {
const variantSelect = document.querySelector('#product-selectors');
if (!variantSelect) return;
// Run once on page load
const initialText = variantSelect.options[variantSelect.selectedIndex].text.split(' - ')[0];
filterVariantImages(initialText);
// Update on change
variantSelect.addEventListener('change', function() {
const selectedText = this.options[this.selectedIndex].text.split(' - ')[0];
filterVariantImages(selectedText);
});
});