Quart / Hand Mixer Store
KitchenAid KHB300WH Hand Blender, White
rom KitchenAid
| List Price: | $129.99 |
| Price: |
$81.65 & eligible for FREE Super Saver Shipping on orders over $25. Details |
Availability: Usually ships in 24 hours
Ships from and sold by Amazon.com
9 new or used available from $76.95
Average customer review: ![]()
Product Description
This immersion blender provides efficient powerful blending at any speed, as well as chopping and whisking. Its motor is designed for quiet, long-life operation and thoroughly blends both hot and cold foods. The stainless steel blending attachment features a splashguard with air slots to increase flow during blending. Unlike plastic attachments, it won’t stain when you work with tomatoes, curries, and berries. Its 8″ length allows you to blend in deep pots or pitchers. You’ll find this an extremely handy tool for pureeing soups, vegetables, baby food, and beverages. With the whisk and chopper attachments you can also create whipped desserts, dressings, dips, and chopped nuts, veggies, meat and other foods.
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
- Amazon Sales Rank: #311 in Kitchen & Housewares
- Color: White
- Brand: KitchenAid
- Model: KHB300WH
- Dimensions: 5.80″ h x 10.40″ w x 19.00″ l, 5.20 pounds
Features
- Ergonomic, fashion-colored housing with no-slip grip
- Includes wire whisk and nut chopper attachments
- 4-cup mixing beaker with snap-lock lid for storing foods
- Accessory bag with drawstring keeps all components together
- Measures 17 by 3 by 6 inches; 1-year, hassle-free, replacement warranty
Editorial Reviews
Amazon.com Review
A great gift for those with small kitchens, this hand-held blender and its accessories take the place of several larger appliances. Included are a regular blending blade (which can be immersed 8 inches into soup pots or deep bowls), a wire whisk for beating eggs and batters, and an enclosed chopper for nuts, cheese, and fresh herbs. Also included are a four-cup mixing beaker with a snap-lock lid, useful for storing blended ingredients, as well as a drawstring bag to keep all the components together. KitchenAid covers the blender with a one-year, hassle-free replacement warranty. –Ann Bieri
Customer Reviews
Perfect![]()
Needed an immersion blender that could be used on the stovetop. It is nice for smaller blending and whipping jobs as well. I like to make smoothies with it. Has a good amount of power for breaking up lumpy sauces, pulverizing veggies for hot cream of broccoli soup and whips cream well for strawberry shortcake. The mini processor is not for finesse, but works well.
Great help with small kitchen jobs![]()
Love the sleek design and ease of use, as well as the immediate response and excellent performance. Love it for dressings, gravies, even small shopping and dicing jobs. Excellent addition to any busy cook’s kitchen.
Kitchen Necessity![]()
Necessity for any kitchen for cooks at any level. Easy to use and clean. Any one can create fluffy omelets, creamy soups and salad dressings with healthy, wholesome ingredients with this appliance.













