Hoover U5262-910 EmPower Bagless Upright Vacuum
|
| List Price: | $109.99 |
| Price: | $99.88 & eligible for FREE Super Saver Shipping on orders over $25. Details |
Availability: Usually ships in 24 hours
Ships from and sold by Amazon.com
14 new or used available from $99.00
Average customer review: ![]()
Product Description
Hoover EmPower Upright Bagless Vacuum - With the EmPower upright vacuum, you get a few unique benefits when compared to other bagless options. One of those features is the Hush Mode, which allows you to clean quietly. Perfect for when the baby’s sleeping! It also features a folding handle, making the EmPower extremely easy to store! 5 Height Settings - from hardwood floors to thick throw rugs with the flick of a switch 15 Width - a wide cleaning path that cuts down on vacuuming time Color - Grey & Coral Orange
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: #20856 in Kitchen & Housewares
- Color: Coral Orange
- Brand: Hoover
- Model: U5262-910
- Released on: 2005-06-15
- Dimensions: 20.60 pounds
Features
- Bagless upright vacuum with 15-inch cleaning path from Hoover; hush mode available for quiet cleaning
- Teflon-coated HEPA filtration cartridge removes air impurities and allergens; debris collects in removable double-chamber dust cup
- 12-amp motor features push-button power surge for heavy-duty dirt extraction; 5 height settings available for various carpets and floors
- Onboard accessories include hand-held power tool for pet hair and vertical cleaning; with a 31-foot power cord and fold-down handle
- Vacuum weighs 21 pounds upon shipping; 1-year warranty
Editorial Reviews
Amazon.com Review
With a custom power boost function for serious matting and soiling, Hoover offers their EmPower bagless vacuum for household cleaning needs. The upright 12-amp vacuum offers two power settings and five height levels to accommodate a wide variety of floor and carpet types, while eradicating both deeply embedded debris and light layers of dust. With a long-lasting HEPA cartridge filter, the vacuum also improves an environment’s air quality, stripping away dust mites, ragweed, and most grass pollen. In removing and containing these allergens, the newly vacuumed room provides relief for sufferers of seasonal allergies like hay fever and helps minimize the discomfort for individuals with cat or dog allergies.
To ensure a clean carpet, the 15-inch wide vacuum head features a helpful headlight to illuminate soiled patches. The agitation from the vacuum’s brush roll uproots dirt from even the plushest carpet, with the option of the push button power boost for heavy-duty cleaning. To accommodate households with sleeping babies, children at study, or other volume sensitive inhabitants, the EmPower model is endowed with a Hush mode, operating on lower power for quieter cleaning. Debris travels through a Teflon-coated HEPA cartridge filter into a sealed dual-chamber dust cup. The chambers are transparent to allow easy monitoring of the dust cup’s fullness. The dust cup detaches from the vacuum body for easy emptying. Vacuum tools and accessories include a powered hand tool for pet hair and stair step cleaning, extension wand, dusting brush, upholstery nozzle, crevice wand, and an extra-reach hose. The vacuum handle folds down for compact storage. The power cord spans 31 feet in distance. For the best results, the HEPA filter should be replaced every three years and should never be washed. Hoover offers a one-year warranty for this item. The pre-assembled vacuum weighs 21 pounds upon shipping. –Jessica Reuling
Customer Reviews
Great value for the price![]()
This is a fantastic value for the price. I had purchased a $400 Kenmore canister vac and ended up taking it back because it didn’t meet my expectations. This vacuum is 1/4 the price and works a million times better than the Kenmore. I would recommend this to a friend!
Not a Dyson![]()
Not bad for 100.00, but…….
Dont think you’re getting a Dyson for less money. This unit doesn’t even come close. It does work and pick up debris, however the filter and catch bin fill up quickly about five times faster then a bagged system. Once full the suction is all but lost and cleaning the thing takes a little bit of effort. You have to take the filter cartridge OUTSIDE! so you dont drop all the dust back in the house and bang it to get the dust out.
Also, be wary of buying a reconditioned/used item. Mine was in good shape but it had the wrong size belt in it. Very upsetting until that was figured out.
perfect for us![]()
our old hoover was just too heavy and bulky to push around anymore. we wanted a lighter vacuum that was still good on carpet. we thought of oreck, but they are absurdly overpriced and never do well when tested by consumer places. this hoover fits our need perfectly. we have a lot of carpet and this macchine JUMPS forward and almost pulls itself. it cleans well; the tools work well. the only reason we didn’t give it five stars is because it is a little pain to empty and clean the filter each time. not too bad, and a small price to pay for good cleaning and an extremely easy vacuum to use and store. this machine works as advertised.









