calcPageSize())" />
calcPageSize())" class="absolute inset-0 object-contain object-center w-full m-auto max-h-screen-75" :class="{ 'cursor-pointer': !fullscreen }" width="467" height="467" :loading="active!==index ? 'lazy' : 'eager'" :src="fullscreen ? image.full : image.img" x-transition.opacity.duration.500ms x-show="active===index" />Medline - Authorized Distributor
Product Highlights
- Packaged sterile and individually
- Impregnated with white petroleum for non-stick surface
- Ideal for light exudating
- Highly porous material for fresh air exchange
- Fast 1-3 day shipping
- Easy returns
- AutoShip eligible
free shipping on $49+
Item# | Description | Size | Price |
---|---|---|---|
CUR250381 | 3 Inch x 8 Inch Fast 1-3 Day Delivery! | Case of 144 | List Price: $224.71 Price: $195.50 |
CUR250381H | 3 Inch x 8 Inch Fast 1-3 Day Delivery! | Each | List Price: $2.17 Price: $1.89 |
CUR250381Z | 3 Inch x 8 Inch Fast 1-3 Day Delivery! | Box of 24 | List Price: $37.45 Price: $32.58 |
'); // 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
The Curad Oil Emulsion Dressing 3 x 8 Inch is a non-adherent dressing that aims to reduce the pain of pulling or tugging on the skin when a wound is healing. You may have had experiences with other dressings that are not non-adherent where, when replacing the dressing, you find your wound being opened again through the scab being torn off, causing drainage to occur. These types of dressings (which are not non-adhering) can cause scarring if the scab is constantly being ripped off and the wound isn't allowed to heal properly.
The Curad 3 x 8 Inch Oil Emulsion Gauze Dressing is large enough to be convenient for large wounds and openings such as those made in surgical medical procedures. Many doctors highly recommend the use of these types of sterile dressings as they have features to decrease bacterial growth and protect from infections. Large abrasions or burns can often require a more extended healing process. The emulsion dressing is impregnated with USP white petrolatum to keep moisture on the wound for a better healing outcome.
A smaller size gauze dressing is available for smaller wound, a 3 x 3 inch dressing with the same benefits is also an option by Curad.
Product Features and Benefits
- Sterile Dressing Made of Knitted, High-Porosity Cellulose Acetate
- Impregnated with USP White Petrolatum
- Emulsion Blend that Permits the Flow of Exudates Without Adhering to Granulating Tissue
- Non-Occlusive Dressing Helps Minimize Skin Maceration
- Highly Conformable and Ideal for Lightly Draining Wounds
- For Use with Minor Burns, Lacerations, Abrasions, Suture Lines, and Episiotomy Incisions
- Use Directly on the Wound Beneath an Absorbent Secondary Dressing
Product Specifications
- Manufacturer: MedLine
- Product Numbers: CUR250381, CUR250381H, CUR250381Z
- Backing Material: Cellulose Acetate
- Impregnated Solution: USP White Petrolatum
- Latex-Free: Yes
- Width: 3 Inches
- Length: 8 Inches
- Occlusive: No
- Application: Wound Dressing
Additional Information
Manufacturer | Medline |
---|---|
FSA / HSA | No |
Customer 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); }); } } }More Items to Explore