Cheap Pampers Swaddlers, Value Pack
Pampers Swaddlers, Value Pack
From Procter & Gamble - Pampers
Average customer review: ![]()
var dims = { "Size" : "1" };
var vs = new VariationSet(dims);
vs.add(new Variation({"Size" : "Size 2-3, 14-22 Lbs. (152 Swaddlers)", "Asin" : "B000P9S81O", "Price" : "$40.69", "PriceAmount" : 4069, "ListPrice" : "$41.99", "ListPriceAmount" : 4199, "ImageURL" : "http://ecx.images-amazon.com/images/I/51NYfIjvxVL._SL210_.jpg", "OfferListingId" : "%2Fy5BiFNp47uUvHDN8iAanbWxsoW3DUzIJ6XVZ%2F9hPX5ui8sfBlV3mMd9kEWIa0KaOgPXxoPb0tA5mTymRDM0fw%3D%3D", "Availability" : "Usually ships in 24 hours", "MerchantName" : "Amazon.com" }));
vs.add(new Variation({"Size" : "Size 2 (184 Swaddlers)", "Asin" : "B000FH1DRC", "Price" : "$41.99", "PriceAmount" : 4199, "ListPrice" : "$46.35", "ListPriceAmount" : 4635, "ImageURL" : "http://ecx.images-amazon.com/images/I/51tGvy0vcJL._SL210_.jpg", "OfferListingId" : "6E0IrGxcomSQf71ermEir11cz%2FajIbjrhGba1CSHH5dZ%2FXiI0TZsnq1oxgFtdA9g92fxd1B9jaMK3vDfVDcziQ%3D%3D", "Availability" : "Usually ships in 24 hours", "MerchantName" : "Amazon.com" }));
vs.add(new Variation({"Size" : "Preemie, Up to 6 Lbs. (240 Diapers)", "Asin" : "B000PE0SOE", "Price" : "$74.99", "PriceAmount" : 7499, "ListPrice" : "", "ImageURL" : "http://ecx.images-amazon.com/images/I/51DPvTaWQKL._SL210_.jpg", "OfferListingId" : "D3UxPv%2BPvD6QE5f9blYC5X5nyQ8dV9HHmnNvYTyFa9a2onIGRxG6AYJjjPmwiuOnsNE0xD1sWl0d2O6UtkrtSg%3D%3D", "Availability" : "Usually ships in 24 hours", "MerchantName" : "Amazon.com" }));
vs.add(new Variation({"Size" : "Size 1 (216 Swaddlers)", "Asin" : "B000FGXZBA", "Price" : "$43.99", "PriceAmount" : 4399, "ListPrice" : "$46.35", "ListPriceAmount" : 4635, "ImageURL" : "http://ecx.images-amazon.com/images/I/51sFozZ%2BpNL._SL210_.jpg", "OfferListingId" : "EkRUJnB740zoUH1VusYBLgEQ0JVt6yJH%2Fzi6HEUqVLquKtL%2BfV07vqtcYqS9xLAACjkFIqzVpTRtV0qcbmMB4w%3D%3D", "Availability" : "Usually ships in 24 hours", "MerchantName" : "Amazon.com" }));
initializeVariationSelector(vs, 'dynVariationSelector');
Product Description
Pampers Swaddlers New Baby diapers offer a Grow-With-Me fit with super-stretchy sides and soft adjustable overlapping fasteners. Swaddlers have the Absorb Away Liner¿ which helps keep wetness and runny mess away from baby’s sensitive skin. Sesame Street characters are pictured on the top front of Swaddlers.
addHandlers();
function addHandlers() { if (goVariationSet == null || AJSEventHandler == null || VariationSetEvent == null) { return; }
goVariationSet.registerEvent(VariationSetEvent.DIMENSION_HOVER, new AJSEventHandler(null, notAvailableHover_handle)); goVariationSet.registerEvent(VariationSetEvent.DIMENSION_SELECTED, new AJSEventHandler(updateDimensionText_init, updateDimensionText_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updatePrice_init, updatePrice_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateAvail_init, updateAvail_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(null, updateOfferId_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateBuyButton_init, updateBuyButton_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateImage_init, updateImage_handle));
var buybtn = document.getElementById('buybutton'); var form = document.buybox;
if (buybtn != null && form != null) { if (document.body.addEventListener) { buybtn.addEventListener('mouseover', buyButtonMouseover, false); buybtn.addEventListener('mouseout', buyButtonMouseout, false); form.addEventListener('submit', cartSubmit, false); } else { buybtn.attachEvent('onmouseover', buyButtonMouseover); buybtn.attachEvent('onmouseout', buyButtonMouseout); form.attachEvent('onsubmit', cartSubmit); } }
}
function updateDimensionText_init() { var spans = document.getElementsByTagName("span"); for (var i = 0; i < spans.length; i++) { if (spans[i].className == “dimensionSelectorLabel”) { spans[i].innerHTML = AJSStrings.get(”choose one”); } } }
function updateDimensionText_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_SELECTED) return;
var dn = event.dimensionName; var element = document.getElementById(’dimensionSelectorLabel_’ + dn); if (element) { var value = event.dimensionValue; if (value == null) { value = AJSStrings.get(”choose one”); } element.innerHTML = value; } }
function notAvailableHover_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_HOVER || goVariationSet == null) return;
var div = document.getElementById(’variationNotAvailable’); if (div == null) return;
var dn = event.dimensionName; var dv = event.dimensionValue;
if (dn == null && dv == null) { div.style.display = ‘none’; } else if (!goVariationSet.isDimensionValueAvailable(dn, dv)) { var dims = goVariationSet.getAllConstraints(); dims[dn] = dv; var out = AJSStrings.get(”Not available in”) + ‘<br\/>’; for (var d in dims) { out += AJSStrings.getFallback(d) + ‘: <span class=”notAvailHighlight”>’ + dims[d] + “<\/span><br\/>”; } var img = document.getElementById(’detailProductImage’); var width = (img == null) ? 180 : img.width + 10;
div.style.width = width; div.innerHTML = out; div.style.display = ‘block’; } }
function updatePrice_init() { var offerPrice = document.getElementById(’detailOfferPrice’); var listPrice = document.getElementById(’detailListPrice’); if (offerPrice == null) return;
this.defaultPrice = offerPrice.innerHTML; if (listPrice != null) { this.defaultListPrice = listPrice.innerHTML; } }
function updatePrice_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var offerPrice = document.getElementById(’detailOfferPrice’); var listPrice = document.getElementById(’detailListPrice’); if (offerPrice == null) return;
var variation = event.variation; if (variation != null) { if (variation.attrs.Price) { offerPrice.innerHTML = variation.attrs.Price; } if (listPrice != null && variation.attrs.ListPrice && (variation.attrs.ListPriceAmount > variation.attrs.PriceAmount)) { listPrice.innerHTML = variation.attrs.ListPrice; } } else { offerPrice.innerHTML = this.defaultPrice; if (listPrice != null) { listPrice.innerHTML = this.defaultListPrice; } } }
function updateAvail_init() { var element = document.getElementById(’dimSelectAvailability’); if (element == null) return;
this.defaultAvailability = element.innerHTML; }
function updateAvail_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var element = document.getElementById(’dimSelectAvailability’); if (element == null) return;
var variation = event.variation; if (variation != null) { var text = “”; if (variation.attrs.Availability) { text = variation.attrs.Availability; } if (variation.attrs.MerchantName) { if (text != “” && !text.match(/\.\s*$/)) { text += ‘.’; } text += ” ” + AJSStrings.get(’Ships from sold by’) + ” ” + variation.attrs.MerchantName; } element.innerHTML = text; } else if (this.defaultAvailability != null) { element.innerHTML = this.defaultAvailability; } }
function updateOfferId_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return;
var form = document.buybox; if (form == null || form.dynASIN == null || form.dynOfferId == null) return;
var variation = event.variation; if (variation != null && variation.attrs.OfferListingId != null && variation.attrs.Asin != null) { form.dynASIN.value = variation.attrs.Asin; form.dynOfferId.value = variation.attrs.OfferListingId; } else { form.dynASIN.value = ”; form.dynOfferId.value = ”; } }
function updateBuyButton_init() { var element = document.getElementById(’buybutton’); if (element == null) return; element.style.cursor = “not-allowed”; }
function updateBuyButton_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var element = document.getElementById(’buybutton’); if (element == null) return;
if (event.variation == null) { element.style.cursor = “not-allowed”; } else { element.style.cursor = “pointer”; } }
function buyButtonMouseover(event) { if (goVariationSet == null) return;
if (goVariationSet.selectedVariation == null) { var div = document.getElementById(’chooseVariationBFCartAdd’); if (div != null) { div.style.display = ‘block’; } } }
function buyButtonMouseout(event) { var target = (event.target) ? event.target : event.srcElement; var div = document.getElementById(’chooseVariationBFCartAdd’); if (div != null) { div.style.display = ‘none’; } }
function cartSubmit(event) { if (goVariationSet == null || goVariationSet.selectedVariation != null) { return true; } else { if (event.preventDefault) { event.preventDefault(); } return false; } }
function updateImage_init() { var img = document.getElementById(’detailProductImage’); if (img) { this.defaultImage = img.src; }
var link = document.getElementById(’imageViewerLink’); if (link) { this.defaultHref = link.href; // replace current asin with a generic url for subsitutions this.baseHref = link.href.replace(/\/images\/\w{10}/, “/images/%ASIN%”); } }
function updateImage_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var img = document.getElementById(’detailProductImage’); var link = document.getElementById(’imageViewerLink’); var variation = event.variation;
var imgsrc, href;
if (variation && variation.attrs.ImageURL) { imgsrc = variation.attrs.ImageURL; href = this.baseHref.replace(/%ASIN%/, variation.attrs.Asin); } else { imgsrc = this.defaultImage; href = this.defaultHref; }
if (img) img.src = imgsrc; if (link) link.href = href; }
Product Details
- Brand: Procter & Gamble - Pampers
Customer Reviews
LOVE Pampers Swaddlers![]()
While these are pretty expensive (27 cents per diaper), there is just no comparison to Swaddlers. The 2-3 size is awesome because, if your baby is a slow grower, they are the perfect in-between size. I don’t know of any other brands that have a 2-3 size. We will go to a cheaper brand when our baby is bigger, but he has been “stuck” between size 2 and size 3 for awhile, so these are just great. Plus, with Swaddlers, the baby just seems to fit in these for a longer time than other brands.
They are so super-absorbant and do a great job and stopping leaks.
Love these!
love pampers-won’t switch!![]()
We tried one other brand of diapers when my son was born but they leaked almost every time. Since then we stuck with pampers and never changed. I have almost never had a leak or blowout with them. They truly are the best diapers out there. The swaddlers are comfortable and my son has never had a rash or any kinds of problems with them. I don’t really care for the perfume-y smell, but I’ve found that if I take them out of the package to air out that smell gets considerably less noticeable and is pretty mild. Also, just a note for those who use the pampers code to rack up points–the sticker for the amazon purchases is inside the plastic wrap of the diapers. I looked everywhere the first time I got them and threw away the plastic b/c I couldn’t find them. Now I know! Def. recommend these diapers.
I absolutely loved swaddlers for my daughter at size 2.![]()
All of our babies have different body types, my daughter didn’t leak with Huggies newborn with the u shaped cut out. Then when she hit size 2, I could only buy pampers swaddlers. Their super soft, and super absorbent, they move with the body. Just perfect.

Add A Comment