calcPageSize())" />
calcActive())">
Coloplast - Authorized Distributor
(4.9) 41 Reviews
PRODUCT HIGHLIGHTS
- Bottles available individually or in cases
- Comes scented or unscented
- Bottles come in different sizes
- Cleanses, moisturizes, and conditions skin
- Alcohol-free
- No-rinse body wash
- Fast 1-3 day shipping
- Easy returns
- AutoShip eligible
free shipping on $49+ -
Low Returns
High Returns
Item# | Description | Size | Price |
---|---|---|---|
7143 | 4.1 oz. Scented Fast 1-3 Day Delivery! | Each | List Price: $8.34 Price: $7.26 |
7143 | 4.1 oz. Scented Fast 1-3 Day Delivery! | Case of 36 | List Price: $293.83 Price: $255.63 |
7145 | 8.1 oz. Scented Fast 1-3 Day Delivery! | Each | List Price: $10.37 Price: $9.02 |
7145 | 8.1 oz. Scented Fast 1-3 Day Delivery! | Case of 12 | List Price: $122.72 Price: $106.77 |
7146 | 8.1 oz. Unscented Fast 1-3 Day Delivery! | Each | List Price: $11.36 Price: $9.88 |
7146 | 8.1 oz. Unscented Fast 1-3 Day Delivery! | Case of 12 | List Price: $133.54 Price: $116.18 |
7147 | 4.1 oz. Unscented Fast 1-3 Day Delivery! | Each | List Price: $7.13 Price: $6.20 |
7147 | 4.1 oz. Unscented Fast 1-3 Day Delivery! | Case of 36 | List Price: $256.10 Price: $222.81 |
'); // Update the button state to indicate that the modal is created for this button buttonStates[productId] = { modalCreated: true, modalId: modalId }; // Wait for the next event loop to ensure the DOM is updated setTimeout(resolve, 0); }); } // Function to interact with the autoship modal function interactWithModal(productId) { // Use the unique modal identifier var modalId = buttonStates[productId].modalId; // Find the optinSelect within the modal var optinSelect = document.querySelector('#' + modalId + ' og-offer og-select-frequency'); if (optinSelect && optinSelect.shadowRoot.querySelector('og-select')) { optinSelect.shadowRoot.querySelector('og-select').shadowRoot.querySelector('select').value = '1_3'; optinSelect.shadowRoot.querySelector('og-select').shadowRoot.querySelector('select').dispatchEvent(new Event('change')); var formSelector = '#' + modalId + ' form[data-role="toautoship-form_' + productId + '"]'; if (document.querySelector(formSelector + ' button')) { document.querySelector(formSelector + ' button').click(); } } }
Customers Also Bought
Description
Coloplast Bedside-Care Foam Overview
Coloplast Bedside-Care Foam is a no-rinse formula designed for personal hygiene when the patient is non-ambulatory. The no-rinse formula creates a convenient way to clean the entire body without requiring water. As an all-in-one cleanser, it is designed for skin, hair, and perineal incontinence skin cleansing. The 8-ounce pump administers foam for easy application. Another easy-to-apply option for those who prefer not to use foam is the Aloe Vesta spray cleanser.
This cleanser's formula is pH-balanced and alcohol-free to be gentle and not sting. Coloplast No-Rinse Foaming Body Wash, Shampoo & Incontinent Cleanser is available in scented (Coloplast 7145) and unscented (Coloplast 7146). Bedside Care Unscented Foam is ideal for individuals who have sensitive skin.
Features and Benefits
- Cleans and Deodorizes Full Body
- Alcohol-Free, Non-Stinging Formula
- Easy Foam Application
- Scented and Unscented Options
- No Water Required
Specifications
- Manufacturer: Coloplast
- Product Numbers: 7145, 7146
- Quantity: Each, Case of 12
- Volume: 8 Ounces
- Dispensing: Foam Bottle
- Alcohol-Free: Yes
- Application: All-in-One No-Rinse Body/Hair Cleansing
Manuals and Documents
Safety Data Sheet
Additional Information
Manufacturer | Coloplast |
---|---|
Brand | BedSide-Care |
FSA / HSA | No |
Customer Reviews
(4.9) 41 Reviews
Questions & Answers
' + 'Save ' + discountAmount + ' with Auto-ship ' + intervalLabel + ' which comes to ' + perOrderPrice + ' per order and ' + totalOrderPrice + ' in total during whole subscription period.' + '
'; } if (htmlContent) { document.querySelector(".subscription-savings-calculator").style.display = 'block'; } document.getElementById("saving-calculator").innerHTML = htmlContent; }, /* Calculate the number of occurrences */ calculateOccurrences(frequencyIntervalData) { let startDateObj = new Date(document.getElementById("md_subscription_start").value); let endDateObj = new Date(document.getElementById("md_subscription_end").value); let frequency = frequencyField.value; let frequencyInterval = 0; if (document.getElementById("end_by_cycle").checked) { return parseInt(document.getElementById("md_subscription_cycle").value); } else if (document.getElementById("infinite").checked) { let currentYear = parseInt(startDateObj.getFullYear()); frequencyInterval = frequencyIntervalData[frequency].no_of_interval; frequency = frequencyIntervalData[frequency].interval_type; endDateObj = new Date(currentYear + 1, startDateObj.getMonth(), startDateObj.getDate()); } else if (document.getElementById("end_by_date").checked) { if (frequencyIntervalData.hasOwnProperty(frequency)) { frequencyInterval = frequencyIntervalData[frequency].no_of_interval; frequency = frequencyIntervalData[frequency].interval_type; } } let recurringDates = this.recurringDates(startDateObj, endDateObj, frequency, frequencyInterval); /* Return the number of occurrences */ return recurringDates.length; }, /* Calculate recurring dates based on start and end dates, interval type, and value */ recurringDates(startDate, endDate, intervalType, intervalValue) { const recurringDates = []; let currentDate = new Date(startDate); intervalValue = parseInt(intervalValue); while (currentDate <= endDate) { recurringDates.push(new Date(currentDate)); switch (intervalType) { case 'day': currentDate.setDate(parseInt(currentDate.getDate()) + intervalValue); break; case 'week': currentDate.setDate(parseInt(currentDate.getDate()) + (7 * intervalValue)); break; case 'month': currentDate.setMonth(parseInt(currentDate.getMonth()) + intervalValue); break; case 'year': currentDate.setFullYear(parseInt(currentDate.getFullYear()) + intervalValue); break; default: throw new Error('Invalid interval type'); } } /* Return array of recurring dates */ return recurringDates; }, /* Initialize savings calculator and update on relevant changes */ initSavingsCalculate() { let self = this; function updateSavings() { if (document.querySelectorAll(".plan-attribute.savings-calculator").length > 0) { let discountData = JSON.parse(hiddenInput.value); let discountType = discountData.discount_type; let discountAmount = discountData.discount; self.savingsCalculate(discountAmount, discountType); } } /* Event listener for relevant changes */ document.querySelectorAll("#end_by_cycle, #infinite, #end_by_date, #md_subscription_start, #md_subscription_cycle, #md_subscription_end").forEach(function(element) { element.addEventListener('change', updateSavings); }); } } }Other BedSide-Care Products
More Items to Explore