Maytag Smart Top Load Washer with Extra Power Button - 6.0 IEC cu. ft.
Get the heavy duty washing machine that delivers powerful cleaning you can depend on with the Power™ agitator. The Extra Power button boosts stain fighting on any wash cycle with a dual-temperature wash, including the Quick Wash cycle. The Deep Fill option delivers more water when you want it with your choice of deeper water levels, *(Bulky items cycle only available with deepest water level) while the built-in water faucet delivers a quick rinse or a long soak. Plus, smart washer features help you stay in control and efficiently manage laundry from anywhere.**(Appliance must be set to remote enable. WiFi & App required. Features subject to change. Details & privacy info at maytag.com/connect.Use the Maytag™) app to remotely start or stop your appliance, get end of cycle notifications and troubleshoot select issues.
{
st_add_to_cart(event)
}, false);
// Special code to handle real-time price updates
stSTyleFinderWidget.addEventListener("st_dc_on_initial_load", (event) => {
// detect the sku's that need updates (initial load returns array of 4 items that need price updates)
var items = event.detail.alternateItems;
// make API calls to get the latest zone prices
const promise1 = update_pricing(items[0].id);
const promise2 = update_pricing(items[1].id);
const promise3 = update_pricing(items[2].id);
const promise4 = update_pricing(items[3].id);
Promise.all([promise1, promise2, promise3, promise4]).then(send_pricing);
}, false);
stSTyleFinderWidget.addEventListener("st_dc_replace_item", (event) => {
// remove the old item pricing
var previous_item = event.detail.replacedItemId;
remove_pricing(previous_item);
// add the new item pricing
var sku = event.detail.itemId;
prices_updating = 1;
const promise1 = update_pricing(sku);
promise1.then(send_pricing);
}, false);
}
function waitForSTWidget(callback) {
if (document.getElementsByTagName("shoptelligence-dc-widget").length>0) {
callback();
} else {
setTimeout(() => waitForSTWidget(callback), 50);
}
}
waitForSTWidget(setup_listeners);
'
>