Appliances at J B Zimmerman in New Holland, PA (2024)

  • Appliances

'); $('.breadcrumb').after('

'); $('.selected-filtes').appendTo('.filter-data-selected'); //1st time on page load if ($('#ajax-content-wrapper').length == 0) { $('.product-layoutrow').wrap('

'); $('.bottom-pagination').appendTo('#ajax-content-wrapper'); } if (is_search_page == '1' && is_ajax_filter == '1') { ajaxLoadContent('https://www.jbzimmerman.com/index.php?route=ripm/category/ajax_load&category_id=2&limit=15&allfilter=1', true); } else { trigerAlldefaultBindedevents(); } $(window).scroll(function() {if (!($('footer').isInViewport())) {$("#button-filter3, #button-filter4").fadeIn(300);} else {$("#button-filter3, #button-filter4").fadeOut(300);}}); if(isMultiSelectFilter == '1') { $('#column-left').removeClass('doNotFilter'); $('#mobile-filter-tags').removeClass('doNotFilter'); } toggleStockSort(); }); // Function to check if current element is in viewport or not $.fn.isInViewport = function() { var elementTop = $(this).offset().top; var elementBottom = elementTop + $(this).outerHeight(); var viewportTop = $(window).scrollTop(); var viewportBottom = viewportTop + $(window).height(); return elementBottom > viewportTop && elementTop < viewportBottom; }; function cloneFilterMobile() { var slideroption = { range: true, min: parseInt($(".price_min_limit").val()), max: parseInt($(".price_max_limit").val()), step: parseInt($(".price_steps").val()), values: [parseInt($(".price_min").val()), parseInt($(".price_max").val())], slide: function(event, ui) { $(".amount").val("$" + ui.values[0] + " - $" + ui.values[1]); $(".price_min").val(ui.values[0]); $(".price_max").val(ui.values[1]); }, stop: function(event, ui) { if(isMultiSelectFilter == '1' && is_search_page == '0') { $('#column-left').addClass('doNotFilter'); $('#mobile-filter-tags').addClass('doNotFilter'); } else { $('#button-filter').trigger('click'); } } }; $(".slider-range").slider(slideroption); var desktop_filter = $('#column-left .panel.filter'); $('#mobile-filter-tags').html(desktop_filter.clone(true)); let mobile_filter_html = '

'; if(isMultiSelectFilter == '1' && is_search_page == '0') { mobile_filter_html += '

'; } $('#mobile-filter-tags').append(mobile_filter_html); $('#button-reset').on('click', function() { $('.panel.filter').find('input[type=checkbox]:checked').removeAttr('checked'); $('#button-filter').trigger('click'); }); $('#button-filter2').on('click', function() { $('#button-filter').trigger('click'); }); $('#button-filter4').unbind('click').on('click', function() { $('#column-left').removeClass('doNotFilter'); $('#mobile-filter-tags').removeClass('doNotFilter'); filterData('mobile-filter-tags'); }); $('.product-layoutrow .product-details .caption-grid .caption').matchHeight(); $('.ripm-featured .product-layoutrow .product-thumb .image').matchHeight(); $('.ripm-featured .product-layoutrow .product-thumb .caption').matchHeight(); $('.recently-viewed .product-layoutrow .caption').matchHeight(); $('.featured.featured-tabs .product-details .caption-grid .caption').matchHeight(); } var filterData = function(containerId) { var filter = []; var customfilter = {}; var customfilterstring = []; var filterGroup = []; var price = []; var price_min = parseInt($('#' + containerId + " .price_min").val()); var price_max = parseInt($('#' + containerId + " .price_max").val()); var price_min_limit = parseInt($('#' + containerId + " .price_min_limit").val()); var price_max_limit = parseInt($('#' + containerId + " .price_max_limit").val()); if (price_min > 0 || price_max > 0) { if (price_min != price_min_limit || price_max != price_max_limit) { price.push($('#' + containerId + " .price_min").val()); price.push($('#' + containerId + " .price_max").val()); } } $('#' + containerId + ' input[name^=\'filter\']:checked').each(function(element) { var group = $(this).attr('data-gname'); if (this.value) { if (customfilter[group] == undefined) { customfilter[group] = { value: this.value }; } else { customfilter[group] = { value: customfilter[group].value + ',' + this.value }; } } // filter.push(this.value); }); $('#' + containerId + ' select[name^=\'filter\']').each(function(element) { var group = $(this).attr('data-gname'); if (this.value) { if (customfilter[group] == undefined) { customfilter[group] = { value: this.value }; } else { customfilter[group] = { value: customfilter[group].value + ',' + this.value }; } } // filter.push(this.value); }); $('#' + containerId + ' input[name^=\'filterGroupId\']').each(function(element) { var filter_first_key = 'filterGroupStart' + this.value; var filter_first_value = $('#' + containerId + ' input[name^=\'' + filter_first_key + '\']').val(); var filter_secnd_key = 'filterGroupEnd' + this.value; var filter_secnd_value = $('#' + containerId + ' input[name^=\'' + filter_secnd_key + '\']').val(); if (filter_first_value != '' || filter_secnd_value != '') { filterGroup.push(this.value + '_' + filter_first_value + '-' + filter_secnd_value); } }); for (var item in customfilter) { customfilterstring.push(item + "=" + customfilter[item].value); } var currentURL = 'https://www.jbzimmerman.com/Appliances'; var ajax_content_url = 'https://www.jbzimmerman.com/index.php?route=ripm/category/ajax_load&category_id=2'; var ajax_filter_url = 'https://www.jbzimmerman.com/index.php?route=ripm/module/filter/get_filter&category_id=2&froute=ripm/category'; if (isResetButtonPress === false) { if (customfilterstring.length > 0) { ajax_content_url += '&' + customfilterstring.join('&'); ajax_filter_url += '&' + customfilterstring.join('&'); currentURL += '&' + customfilterstring.join('&'); } } else { isResetButtonPress = false; } if (filterGroup.length > 0) { ajax_content_url += '&attributes_range=' + filterGroup.join(','); ajax_filter_url += '&attributes_range=' + filterGroup.join(','); currentURL += '&attributes_range=' + filterGroup.join(','); } if (price.length > 0) { ajax_content_url += '&filter[price]=' + price.join(','); ajax_filter_url += '&filter[price]=' + price.join(','); currentURL += '&filter[price]=' + price.join(','); } if (is_ajax_filter == '1' || is_search_page == '1') { toggleStockSort(); var filter_sort_order = $('select#input-sort option:selected').attr('data-value-sort'); var filter_limit = $('select#input-limit option:selected').attr('data-value-limit'); if (typeof filter_sort_order != 'undefined' && filter_sort_order != '') { var filter_sort_orderarray = filter_sort_order.split('-'); ajax_content_url += "&sort=" + filter_sort_orderarray[0] + "&order=" + filter_sort_orderarray[1]; // currentURL += "&sort=" + filter_sort_orderarray[0] + "&order=" + filter_sort_orderarray[1]; } if (typeof filter_limit != 'undefined' && filter_limit != '' && filter_limit != '0') { ajax_content_url += "&limit=" + filter_limit; // currentURL += "&limit=" + filter_limit; } if(!($('#' + containerId).hasClass('doNotFilter')) || is_search_page == 1) { ajaxLoadContent(ajax_content_url); //load content updateUrlPath(currentURL); } if (is_search_page == 1 && !isHideDisabledFilters) { loadfilter(ajax_filter_url, 'brands'); //load brands loadfilter(ajax_filter_url, 'category'); //load Category loadfilter(ajax_filter_url, 'color'); //load Color loadfilter(ajax_filter_url, 'attributes'); //load attributes } else { loadfilter(ajax_filter_url, 'full_filter'); //get fullfilter } } else { if(!($('#' + containerId).hasClass('doNotFilter'))) { location = currentURL; } } }; var loadfilter = function(ajax_filter_url, filter_exclude) { $.ajax({ url: ajax_filter_url + "&ftype=" + filter_exclude, async: true, beforeSend: function() {}, success: function(response) { processData(response.filter, filter_exclude); if (filter_exclude == 'category') { $('#filterSubCategory').remove(); $('div[data-target="#filterSubCategory"]').remove(); $('#filterCategory').after(response.filter.subcategory); } else if (filter_exclude == 'full_filter') { if (response.is_full_filter == true) { $('.ripm-product-fitler-wrapper').html(response.filter); trigerAlldefaultBindedevents(); } } $('.show-more-link a').unbind('click').on('click', function() { var txt_show_more = 'Show More'; var txt_show_less = 'Hide More'; var is_open = $(this).hasClass('less'); $('.filter-group-child-items.active').slideUp().removeClass('active'); $('.show-more-link a.less').removeClass('less').text(txt_show_more); var targer_contrainer_id = $(this).parents('.show-more-link').attr('data-target'); if (is_open) { $(targer_contrainer_id).removeClass('active').slideUp(); } else { $(this).addClass('less').text(txt_show_less); $(targer_contrainer_id).addClass('active').slideDown(); } return false; }); $('input[type=\'checkbox\']').unbind('click').on('click', function() { if ($(this).parents('#mobile-filter-tags').length) { filterData('mobile-filter-tags'); } else { filterData('column-left'); } }); }, error: function() { alert('Something wrong with server.'); } }); }; var processData = function(result, filter_include) { var filterKeyName; for (filterKeyName in result) { var filter_facet_ids = result[filterKeyName]; var fieldName = filterKeyName; if (fieldName == filter_include) { $('input[name="filter[filter[' + fieldName + ']][]"]').each(function() { var term_id = $(this).val(); if (typeof term_id != 'undefined') { var filterOptionObj = filter_facet_ids[term_id]; var curObj = $('label[for="filter[' + fieldName + ']' + term_id + '"]'); curObj.addClass('disabled'); $(this).attr('disabled', "disabled"); if (typeof filterOptionObj != 'undefined') { $(this).removeAttr('disabled'); curObj.removeClass('disabled'); curObj.text(filterOptionObj.name); } } }); } } }; var ajaxLoadContent = function(ajax_content_url, hide_loader) { var ajax_content_url = ajax_content_url.replace('https://www.jbzimmerman.com/', 'https://www.jbzimmerman.com/'); $.ajax({ url: ajax_content_url, async: true, beforeSend: function() { if (typeof hide_loader != 'undefined' && hide_loader == true) { $('.search-ajax').hide(); $('.searchoverlay').hide(); } else { $('.searchoverlay').show(); $('.search-ajax').show(); } }, success: function(response) { toggleStockSort(); $('#ajax-content-wrapper').html(response.content); if (response.is_full_filter == true) { if (response.total_items == 0) { $('#content').css('width', '100%'); } $('.ripm-product-fitler-wrapper').html(response.filter); } else if (response.filter) { $('.filter-attribute-class').remove(); $('#filterPrice').after(response.filter); } $('.filter-data-selected').empty(); $('.selected-filtes').appendTo('.filter-data-selected'); }, error: function() { $('.searchoverlay').hide(); $('.search-ajax').show(); alert('Something wrong with server.'); }, complete: function() { $('.searchoverlay').hide(); $('.search-ajax').show(); let topOffsetHeight = $('.breadcrumb').css('margin-top'); let topOffset = topOffsetHeight != '0px' ? $('header').height() : 10; $("html, body").animate({ scrollTop: $('.filter-data-selected').offset().top - topOffset }, "slow"); //LOAD CALLFORPRICE JS $('#ajaxModalCFP').remove(); $.getScript("https://d12rh965z7jvqw.cloudfront.net/javascripts/common/callforprice/callforprice_modal.min.js", function(data, textStatus, jqxhr) {}); trigerAlldefaultBindedevents(); $('.product-layoutrow .product-details .caption-grid .caption').matchHeight(); $('.ripm-featured .product-layoutrow .product-thumb .image').matchHeight(); $('.ripm-featured .product-layoutrow .product-thumb .caption').matchHeight(); $('.recently-viewed .product-layoutrow .caption').matchHeight(); $('.featured.featured-tabs .product-details .caption-grid .caption').matchHeight(); } }); }; var updateUrlPath = function(content_url) { history.pushState(null, null, content_url); }; var toggleStockSort = function() { if(hasPOSStatus) { if($('input[data-gname="filter[pos_stock]"]:checked').length > 0) { $('select#input-sort option[data-value-sort="p.quantity-ASC"]').show(); $('select#input-sort option[data-value-sort="p.quantity-DESC"]').show(); } else { $('select#input-sort option[data-value-sort="p.quantity-ASC"]').hide(); $('select#input-sort option[data-value-sort="p.quantity-DESC"]').hide(); let selected_option = $('select#input-sort option:selected').attr('data-value-sort'); let default_sort = $('select#input-sort option[data-value-sort="p.sort_order-ASC"]').attr('value'); if(selected_option == 'p.quantity-DESC' || selected_option == 'p.quantity-ASC') { $('select#input-sort').val(default_sort); // $('select#input-sort option').removeAttr('selected'); // $('select#input-sort option[data-value-sort="p.sort_order-ASC"]').attr('selected', 'selected'); } } } }; var trigerAlldefaultBindedevents = function() { cloneFilterMobile(); $('#clearFilter').removeAttr('id').addClass('clearFilter'); $('input[type=\'checkbox\']').unbind('click').on('click', function() { if(isMultiSelectFilter == '1') { $('#column-left').addClass('doNotFilter'); $('#mobile-filter-tags').addClass('doNotFilter'); } if ($(this).parents('#mobile-filter-tags').length) { filterData('mobile-filter-tags'); } else { filterData('column-left'); } }); if (is_ajax_filter == '1' || is_search_page == '1') { $('select#input-sort,select#input-limit').unbind('change').on('change', function(e) { if ($(this).parents('#mobile-filter-tags').length) { filterData('mobile-filter-tags'); } else { filterData('column-left'); } e.preventDefault(); }); } $('.selectbox select').unbind('change').on('change', function() { if(isMultiSelectFilter == '1') { $('#column-left').addClass('doNotFilter'); $('#mobile-filter-tags').addClass('doNotFilter'); } if ($(this).parents('#mobile-filter-tags').length) { filterData('mobile-filter-tags'); } else { filterData('column-left'); } }); $('#button-filter').unbind('click').on('click', function() { if(isMultiSelectFilter == '1') { $('#column-left').removeClass('doNotFilter'); $('#mobile-filter-tags').removeClass('doNotFilter'); } filterData('column-left'); }); $('#button-filter2').unbind('click').on('click', function() { if(isMultiSelectFilter == '1') { $('#column-left').removeClass('doNotFilter'); $('#mobile-filter-tags').removeClass('doNotFilter'); } filterData('mobile-filter-tags'); }); // Floating filter button for multiselect filter(Desktop) $('#button-filter3').unbind('click').on('click', function() { $('#column-left').removeClass('doNotFilter'); $('#mobile-filter-tags').removeClass('doNotFilter'); filterData('column-left'); }); // Floating filter button for multiselect filter(Mobile) $('#button-filter4').unbind('click').on('click', function() { $('#column-left').removeClass('doNotFilter'); $('#mobile-filter-tags').removeClass('doNotFilter'); filterData('mobile-filter-tags'); }); $('.show-more-link a').unbind('click').on('click', function() { var txt_show_more = 'Show More'; var txt_show_less = 'Hide More'; var is_open = $(this).hasClass('less'); $('.filter-group-child-items.active').slideUp().removeClass('active'); $('.show-more-link a.less').removeClass('less').text(txt_show_more); var targer_contrainer_id = $(this).parents('.show-more-link').attr('data-target'); if (is_open) { $(targer_contrainer_id).removeClass('active').slideUp(); } else { $(this).addClass('less').text(txt_show_less); $(targer_contrainer_id).addClass('active').slideDown(); } return false; }); var check_product_ids = []; $('[onclick^="cart.add"], [onclick^="addToCart"]').each(function(i, e) { var params = $(this).attr('onclick').match(/\d+/); check_product_ids.push(params[0]); }); if (typeof checkPrice != 'undefined') { checkPrice(check_product_ids); } $(".buttonCompareCat").unbind('click').on('click touchstart', function() { $(this).css("border", "2px solid green"); compare.add($(this).attr("prod-id")); }); //handle attributes here if (localStorage.getItem("display") == "grid") { $("#grid-view").trigger("click"); $("#grid-view").addClass("active"); } else { $("#list-view").trigger("click"); $("#list-view").addClass("active"); } /*load pagination*/ if (is_ajax_filter == '1' || is_search_page == '1') { $('.bottom-pagination .pagination a').unbind('click').on('click', function(e) { var ajax_page_url = $(this).attr('href'); e.preventDefault(); ajaxLoadContent(ajax_page_url); //load content return false; }); $('select#input-sort').removeAttr('onchange'); $('select#input-limit').removeAttr('onchange'); $(".clearFilter").unbind('click').on('click', function() { // $('select#input-sort').val(); // $('select#input-limit').val(); $(".price_min").val($('.price_min_limit').val()); $(".price_max").val($('.price_max_limit').val()); $(".amount").val("$" + $('.price_min_limit').val() + " - $" + $('.price_max_limit').val()); $('input[type=\'checkbox\']').prop('checked', false); $('select.selectbox').prop('selected', false); $('input.range-filter').val(''); isResetButtonPress = true; if ($(this).parents('#mobile-filter-tags').length) { filterData('mobile-filter-tags'); } else { filterData('column-left'); } }); } else { $(".clearFilter").unbind('click').on('click', function() { location = 'https://www.jbzimmerman.com/Appliances'; }); } };

Product Compare (0)

2 Additional Option

Rebate

Appliances at J B Zimmerman in New Holland, PA (2)

20.8 Cu. Ft. 36" Width Built In Stainless Steel French Door Refrigerator with Platinum Interior Design

  • Everyday Price : $10,299.00
  • Sale Price : $9,268.00
  • Total Savings : $1,031.00

Outside, this built-in stainless steel French door refrigerator will seamlessly integrate with your ..

Appliances at J B Zimmerman in New Holland, PA (3)

20.8 Cu. Ft. 36" Width Built In Stainless Steel French Door Refrigerator with Platinum Interior Design

Outside, this built-in stainless steel French door refrigerator will seamlessly integrate with your ..

  • Everyday Price : $10,299.00
  • Sale Price : $9,268.00
  • Total Savings : $1,031.00

Rebate

Appliances at J B Zimmerman in New Holland, PA (5)

20.9 Cu. Ft. 36" Width Built-In Stainless Bottom Mount Refrigerator with Platinum Interior Design

  • Everyday Price : $9,049.00
  • Sale Price : $8,138.00
  • Total Savings : $911.00

This built-in bottom-mount refrigerator is as beautiful inside as it is outside. The Preserva® Food ..

Appliances at J B Zimmerman in New Holland, PA (6)

20.9 Cu. Ft. 36" Width Built-In Stainless Bottom Mount Refrigerator with Platinum Interior Design

This built-in bottom-mount refrigerator is as beautiful inside as it is outside. The Preserva® Food ..

  • Everyday Price : $9,049.00
  • Sale Price : $8,138.00
  • Total Savings : $911.00

Appliances at J B Zimmerman in New Holland, PA (8)

30'' 4-Burner Dual Fuel Freestanding Range, Commercial-Style

  • Sale Price : $5,529.00

This dual fuel range has commercial styling available in a variety of bold colors. The stunning loo..

Appliances at J B Zimmerman in New Holland, PA (9)

30'' 4-Burner Dual Fuel Freestanding Range, Commercial-Style

This dual fuel range has commercial styling available in a variety of bold colors. The stunning loo..

  • Sale Price : $5,529.00

Appliances at J B Zimmerman in New Holland, PA (11)

30-INCH WIDE COMBINATION WALL OVEN WITH TRUE CONVECTION - 6.4 CU. FT.

  • Everyday Price : $3,949.00

Enjoy two cooking systems in one with this 30-inch combination wall oven in fingerprint resistant st..

Appliances at J B Zimmerman in New Holland, PA (12)

30-INCH WIDE COMBINATION WALL OVEN WITH TRUE CONVECTION - 6.4 CU. FT.

Enjoy two cooking systems in one with this 30-inch combination wall oven in fingerprint resistant st..

  • Everyday Price : $3,949.00

Rebate

Appliances at J B Zimmerman in New Holland, PA (14)

27" Double Wall Oven with Even-Heat™ True Convection

  • Everyday Price : $4,299.00
  • Sale Price : $3,868.00
  • Total Savings : $431.00

This 27" Double Wall Oven with Even-Heat™ True Convection provides consistent heating and even cooki..

Appliances at J B Zimmerman in New Holland, PA (15)

27" Double Wall Oven with Even-Heat™ True Convection

This 27" Double Wall Oven with Even-Heat™ True Convection provides consistent heating and even cooki..

  • Everyday Price : $4,299.00
  • Sale Price : $3,868.00
  • Total Savings : $431.00

2 Additional Option

Rebate

Appliances at J B Zimmerman in New Holland, PA (17)

Café™ ENERGY STAR® 22.1 Cu. Ft. Smart Counter-Depth French-Door Refrigerator with Hot Water Dispenser

  • Everyday Price : $4,099.00
  • Sale Price : $3,689.00
  • Total Savings : $410.00

Café™ ENERGY STAR® 22.1 Cu. Ft. Smart Counter-Depth French-Door Refrigerator with Hot Water Dispense..

Appliances at J B Zimmerman in New Holland, PA (18)

Café™ ENERGY STAR® 22.1 Cu. Ft. Smart Counter-Depth French-Door Refrigerator with Hot Water Dispenser

Café™ ENERGY STAR® 22.1 Cu. Ft. Smart Counter-Depth French-Door Refrigerator with Hot Water Dispense..

  • Everyday Price : $4,099.00
  • Sale Price : $3,689.00
  • Total Savings : $410.00

1 Additional Option

Rebate

Appliances at J B Zimmerman in New Holland, PA (20)

Café™ 30" Smart Slide-In, Front-Control, Gas Double-Oven Range with Convection

  • Everyday Price : $3,999.00
  • Sale Price : $2,998.00
  • Total Savings : $1,001.00

Café™ 30" Smart Slide-In, Front-Control, Gas Double-Oven Range with Convection..

Appliances at J B Zimmerman in New Holland, PA (21)

Café™ 30" Smart Slide-In, Front-Control, Gas Double-Oven Range with Convection

Café™ 30" Smart Slide-In, Front-Control, Gas Double-Oven Range with Convection..

  • Everyday Price : $3,999.00
  • Sale Price : $2,998.00
  • Total Savings : $1,001.00

Appliances at J B Zimmerman in New Holland, PA (23)

36-inch Wide 4-Door Refrigerator with Exterior Drawer - 26 cu. ft.

  • Everyday Price : $3,799.00
  • Sale Price : $2,854.00
  • Total Savings : $945.00

Get flexible storage with purposeful spaces for your family's favorites. This bottom freezer refrige..

Appliances at J B Zimmerman in New Holland, PA (24)

36-inch Wide 4-Door Refrigerator with Exterior Drawer - 26 cu. ft.

Get flexible storage with purposeful spaces for your family's favorites. This bottom freezer refrige..

  • Everyday Price : $3,799.00
  • Sale Price : $2,854.00
  • Total Savings : $945.00

1 Additional Option

Appliances at J B Zimmerman in New Holland, PA (26)

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth French-Door Refrigerator

  • Everyday Price : $2,999.00
  • Sale Price : $2,699.00
  • Total Savings : $300.00

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth French-Door Refrigerator..

Appliances at J B Zimmerman in New Holland, PA (27)

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth French-Door Refrigerator

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth French-Door Refrigerator..

  • Everyday Price : $2,999.00
  • Sale Price : $2,699.00
  • Total Savings : $300.00

1 Additional Option

Appliances at J B Zimmerman in New Holland, PA (29)

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth Fingerprint Resistant French-Door Refrigerator

  • Everyday Price : $2,999.00
  • Sale Price : $2,699.00
  • Total Savings : $300.00

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth Fingerprint Resistant French-Door Refrigerator..

Appliances at J B Zimmerman in New Holland, PA (30)

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth Fingerprint Resistant French-Door Refrigerator

GE® ENERGY STAR® 23.1 Cu. Ft. Counter-Depth Fingerprint Resistant French-Door Refrigerator..

  • Everyday Price : $2,999.00
  • Sale Price : $2,699.00
  • Total Savings : $300.00

1 Additional Option

Rebate

Appliances at J B Zimmerman in New Holland, PA (32)

25 Cu. Ft. 36-Width Standard Depth French Door Refrigerator with Interior Dispense and PrintShield™ Finish

  • Everyday Price : $2,699.00

This 25 cu. ft. refrigerator features the ExtendFresh™ Temperature Management System and Produce Pre..

Appliances at J B Zimmerman in New Holland, PA (33)

25 Cu. Ft. 36-Width Standard Depth French Door Refrigerator with Interior Dispense and PrintShield™ Finish

This 25 cu. ft. refrigerator features the ExtendFresh™ Temperature Management System and Produce Pre..

  • Everyday Price : $2,699.00

Appliances at J B Zimmerman in New Holland, PA (35)

36-Inch Wide French Door Refrigerator - 27 Cu. Ft.

  • Everyday Price : $2,999.00
  • Sale Price : $2,699.00
  • Total Savings : $300.00

Maytag® stainless steel french door refrigerators are built tough with strength and storage you can ..

Appliances at J B Zimmerman in New Holland, PA (36)

36-Inch Wide French Door Refrigerator - 27 Cu. Ft.

Maytag® stainless steel french door refrigerators are built tough with strength and storage you can ..

  • Everyday Price : $2,999.00
  • Sale Price : $2,699.00
  • Total Savings : $300.00

3 Additional Option

Appliances at J B Zimmerman in New Holland, PA (38)

36-Inch Wide French Door Refrigerator - 25 cu. ft.

  • Everyday Price : $2,999.00
  • Sale Price : $2,698.00
  • Total Savings : $301.00

Get the storage you need in this refrigerator with water dispenser. An exterior refrigerated drawer ..

Appliances at J B Zimmerman in New Holland, PA (39)

36-Inch Wide French Door Refrigerator - 25 cu. ft.

Get the storage you need in this refrigerator with water dispenser. An exterior refrigerated drawer ..

  • Everyday Price : $2,999.00
  • Sale Price : $2,698.00
  • Total Savings : $301.00

Appliances at J B Zimmerman in New Holland, PA (41)

27" Single Wall Oven with Even-Heat™ True Convection

  • Everyday Price : $3,199.00
  • Sale Price : $2,590.00
  • Total Savings : $609.00

This 27" Single Wall Oven with Even-Heat™ True Convection provides consistent heating and even cooki..

Appliances at J B Zimmerman in New Holland, PA (42)

27" Single Wall Oven with Even-Heat™ True Convection

This 27" Single Wall Oven with Even-Heat™ True Convection provides consistent heating and even cooki..

  • Everyday Price : $3,199.00
  • Sale Price : $2,590.00
  • Total Savings : $609.00

1 Additional Option

Rebate

Appliances at J B Zimmerman in New Holland, PA (44)

30" Built In Microwave Oven with Convection Cooking

  • Everyday Price : $2,749.00
  • Sale Price : $2,468.00
  • Total Savings : $281.00

This convection microwave oven can quickly and thoroughly defrost, melt or cook your favorite foods...

Appliances at J B Zimmerman in New Holland, PA (45)

30" Built In Microwave Oven with Convection Cooking

This convection microwave oven can quickly and thoroughly defrost, melt or cook your favorite foods...

  • Everyday Price : $2,749.00
  • Sale Price : $2,468.00
  • Total Savings : $281.00
  • 1
  • 2
  • 3
  • 4
  • 5
  • >
  • >|

Showing 1 to 15 of 6036 (403 Pages)

Appliances at J B Zimmerman in New Holland, PA (2024)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Cheryll Lueilwitz

Last Updated:

Views: 6095

Rating: 4.3 / 5 (74 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Cheryll Lueilwitz

Birthday: 1997-12-23

Address: 4653 O'Kon Hill, Lake Juanstad, AR 65469

Phone: +494124489301

Job: Marketing Representative

Hobby: Reading, Ice skating, Foraging, BASE jumping, Hiking, Skateboarding, Kayaking

Introduction: My name is Cheryll Lueilwitz, I am a sparkling, clean, super, lucky, joyous, outstanding, lucky person who loves writing and wants to share my knowledge and understanding with you.