Maytag 36" Wide Side-by-Side Refrigerator with Exterior Ice and Water
This side-by-side refrigerator is built tough and easy-to-clean with its fingerprint resistant stainless steel finish. Built with plenty of storage options, including a specially designed soft freeze bin that puts you in control of the way foods freeze. Put in a pint of ice cream and it's soft enough to scoop. Frozen pizza storage stores two frozen pizza boxes upright and out of the way, so quick meals are an easy grab. The distinct and durable Signature Maytag metal shelf adds a bold look to the inside. With an exterior ice and water dispenser for easy access, plus a 10-year limited parts warranty on the compressor, this side-by-side fridge will keep it all cool for years and years.
{
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);
'
>