Refrigeration at A.K. Nahas in Beaver, PA (2024)

  • Appliances
  • Refrigeration

'); $('.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.aknahas.com/index.php?route=ripm/category/ajax_load&category_id=2_1&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.aknahas.com/Appliances/Refrigeration'; var ajax_content_url = 'https://www.aknahas.com/index.php?route=ripm/category/ajax_load&category_id=2_1'; var ajax_filter_url = 'https://www.aknahas.com/index.php?route=ripm/module/filter/get_filter&category_id=2_1&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.aknahas.com/', 'https://www.aknahas.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.aknahas.com/Appliances/Refrigeration'; }); } };

Product Compare (0)

Refrigeration at A.K. Nahas in Beaver, PA (1)

Featured

3 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (3)

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

  • Everyday Price : $3,099.00

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

Refrigeration at A.K. Nahas in Beaver, PA (4)

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 : $3,099.00

Refrigeration at A.K. Nahas in Beaver, PA (5)

Featured

1 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (7)

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

  • Sale Price : $2,999.00

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

Refrigeration at A.K. Nahas in Beaver, PA (8)

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..

  • Sale Price : $2,999.00

Refrigeration at A.K. Nahas in Beaver, PA (9)

Featured

3 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (11)

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

  • Everyday Price : $2,699.00

Organize foods for your family in this Whirlpool® french door refrigerator available in fingerprint-..

Refrigeration at A.K. Nahas in Beaver, PA (12)

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

Organize foods for your family in this Whirlpool® french door refrigerator available in fingerprint-..

  • Everyday Price : $2,699.00

Refrigeration at A.K. Nahas in Beaver, PA (13)

Featured

2 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (15)

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

  • Sale Price : $2,443.00

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

Refrigeration at A.K. Nahas in Beaver, PA (16)

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

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

  • Sale Price : $2,443.00

Refrigeration at A.K. Nahas in Beaver, PA (17)

Featured

2 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (19)

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

  • Sale Price : $2,443.00

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

Refrigeration at A.K. Nahas in Beaver, PA (20)

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

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

  • Sale Price : $2,443.00

Refrigeration at A.K. Nahas in Beaver, PA (21)

Featured

2 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (23)

36-inch Wide French Door Refrigerator with Water Dispenser - 25 cu. ft.

  • Everyday Price : $2,399.00

Get the storage your family needs and easily access filtered water with this refrigerator's water di..

Refrigeration at A.K. Nahas in Beaver, PA (24)

36-inch Wide French Door Refrigerator with Water Dispenser - 25 cu. ft.

Get the storage your family needs and easily access filtered water with this refrigerator's water di..

  • Everyday Price : $2,399.00

Refrigeration at A.K. Nahas in Beaver, PA (25)

Featured

3 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (27)

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

  • Everyday Price : $2,999.00
  • Sale Price : $2,221.00
  • Total Savings : $778.00

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

Refrigeration at A.K. Nahas in Beaver, PA (28)

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,221.00
  • Total Savings : $778.00

Refrigeration at A.K. Nahas in Beaver, PA (29)

Featured

3 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (31)

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

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

Organize foods for your family in this Whirlpool® french door refrigerator available in fingerprint-..

Refrigeration at A.K. Nahas in Beaver, PA (32)

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

Organize foods for your family in this Whirlpool® french door refrigerator available in fingerprint-..

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

Refrigeration at A.K. Nahas in Beaver, PA (33)

Featured

4 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (35)

GE® ENERGY STAR® 25.7 Cu. Ft. Fingerprint Resistant French-Door Refrigerator

  • Sale Price : $1,888.00

GE® ENERGY STAR® 25.7 Cu. Ft. Fingerprint Resistant French-Door Refrigerator..

Refrigeration at A.K. Nahas in Beaver, PA (36)

GE® ENERGY STAR® 25.7 Cu. Ft. Fingerprint Resistant French-Door Refrigerator

GE® ENERGY STAR® 25.7 Cu. Ft. Fingerprint Resistant French-Door Refrigerator..

  • Sale Price : $1,888.00

Refrigeration at A.K. Nahas in Beaver, PA (37)

Featured

Refrigeration at A.K. Nahas in Beaver, PA (39)

GE® ENERGY STAR® 27.0 Cu. Ft. French-Door Refrigerator

  • Sale Price : $1,665.00

GE® ENERGY STAR® 27.0 Cu. Ft. French-Door Refrigerator..

Refrigeration at A.K. Nahas in Beaver, PA (40)

GE® ENERGY STAR® 27.0 Cu. Ft. French-Door Refrigerator

GE® ENERGY STAR® 27.0 Cu. Ft. French-Door Refrigerator..

  • Sale Price : $1,665.00

Refrigeration at A.K. Nahas in Beaver, PA (41)

Featured

Refrigeration at A.K. Nahas in Beaver, PA (43)

GE® ENERGY STAR® 27.0 Cu. Ft. Fingerprint Resistant French-Door Refrigerator

  • Sale Price : $1,665.00

GE® ENERGY STAR® 27.0 Cu. Ft. Fingerprint Resistant French-Door Refrigerator..

Refrigeration at A.K. Nahas in Beaver, PA (44)

GE® ENERGY STAR® 27.0 Cu. Ft. Fingerprint Resistant French-Door Refrigerator

GE® ENERGY STAR® 27.0 Cu. Ft. Fingerprint Resistant French-Door Refrigerator..

  • Sale Price : $1,665.00

Refrigeration at A.K. Nahas in Beaver, PA (45)

Featured

Refrigeration at A.K. Nahas in Beaver, PA (47)

GE® 21.8 Cu. Ft. Counter-Depth Fingerprint Resistant Side-By-Side Refrigerator

  • Sale Price : $1,554.00

GE® 21.8 Cu. Ft. Counter-Depth Fingerprint Resistant Side-By-Side Refrigerator..

Refrigeration at A.K. Nahas in Beaver, PA (48)

GE® 21.8 Cu. Ft. Counter-Depth Fingerprint Resistant Side-By-Side Refrigerator

GE® 21.8 Cu. Ft. Counter-Depth Fingerprint Resistant Side-By-Side Refrigerator..

  • Sale Price : $1,554.00

Refrigeration at A.K. Nahas in Beaver, PA (49)

Featured

2 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (51)

33-inches wide Bottom-Freezer Refrigerator with SpillGuard™ Glass Shelves - 22 cu. ft

  • Everyday Price : $1,999.00
  • Sale Price : $1,554.00
  • Total Savings : $445.00

Conveniently store your family's essentials with this bottom mount refrigerator. Purposeful spaces l..

Refrigeration at A.K. Nahas in Beaver, PA (52)

33-inches wide Bottom-Freezer Refrigerator with SpillGuard™ Glass Shelves - 22 cu. ft

Conveniently store your family's essentials with this bottom mount refrigerator. Purposeful spaces l..

  • Everyday Price : $1,999.00
  • Sale Price : $1,554.00
  • Total Savings : $445.00

Refrigeration at A.K. Nahas in Beaver, PA (53)

Featured

2 Additional Option

Refrigeration at A.K. Nahas in Beaver, PA (55)

30-inches wide Bottom-Freezer Refrigerator with SpillGuard™ Glass Shelves - 18.7 cu. ft.

  • Everyday Price : $1,999.00
  • Sale Price : $1,554.00
  • Total Savings : $445.00

Storing all of your favorite fresh and frozen foods is easy with this 18.7 cu. ft. bottom-freezer re..

Refrigeration at A.K. Nahas in Beaver, PA (56)

30-inches wide Bottom-Freezer Refrigerator with SpillGuard™ Glass Shelves - 18.7 cu. ft.

Storing all of your favorite fresh and frozen foods is easy with this 18.7 cu. ft. bottom-freezer re..

  • Everyday Price : $1,999.00
  • Sale Price : $1,554.00
  • Total Savings : $445.00

Refrigeration at A.K. Nahas in Beaver, PA (57)

Featured

Refrigeration at A.K. Nahas in Beaver, PA (59)

GE® 25.1 Cu. Ft. Fingerprint Resistant Side-By-Side Refrigerator

  • Sale Price : $1,443.00

GE® 25.1 Cu. Ft. Fingerprint Resistant Side-By-Side Refrigerator..

Refrigeration at A.K. Nahas in Beaver, PA (60)

GE® 25.1 Cu. Ft. Fingerprint Resistant Side-By-Side Refrigerator

GE® 25.1 Cu. Ft. Fingerprint Resistant Side-By-Side Refrigerator..

  • Sale Price : $1,443.00
  • 1
  • 2
  • 3
  • 4
  • 5
  • >
  • >|

Showing 1 to 15 of 2023 (135 Pages)

'); }else if (value.type == 'date' || value.type == 'datetime' || value.type == 'time' || value.type == 'text' || value.type == 'textarea') { $('div #quote_details').append('- '+ value.name +': '+value.value+'
'); } else{ $('div #quote_details').append('- '+ value.name +': '+value.value+'
'); } }); } } $('div #overlay').css('display','none'); $('div #overlay').toggleClass('active'); } });$('.fancybox-skin #afq_submit').click(function(e) {var phoneFieldOptional = 'yes';e.preventDefault();e.stopPropagation();if($('.fancybox-skin #afq_name').val() == '') {$('.fancybox-skin #afq_name').css({border: '#F59393 1px solid',background: '#FFF0F0'});if ($('#error-name').length < 1){ $('.fancybox-skin #afq_name').after('

Empty name field!

');}} else if(!isValidEmailAddress($('.fancybox-skin #afq_email').val()) || $('.fancybox-skin #afq_email').val() == ''){ $('.fancybox-skin #afq_name').css({border: '1px solid #ccc',background: '#fff'});$('#error-name').css("display","none");$('.fancybox-skin #afq_email').css({border: '#F59393 1px solid',background: '#FFF0F0'});if ($('#error-email').length < 1){ $('.fancybox-skin #afq_email').after('

Invalid e-mail address

');}} else if(($('.fancybox-skin #afq_phone').val().length > 0) && ($('.fancybox-skin #afq_phone').val().length != 10)) { $('.fancybox-skin #afq_email').css({border: '1px solid #ccc',background: '#fff'});$('#error-email').css("display","none");$('.fancybox-skin #afq_phone').css({border: '#F59393 1px solid',background: '#FFF0F0'});if ($('#error-phone').length < 1){ $('.fancybox-skin #afq_phone').after('

10 digits phone number is required

');}}else if(phoneFieldOptional === "no" && ($('.fancybox-skin #afq_phone').val().length == 0)){ $('.fancybox-skin #afq_email').css({border: '1px solid #ccc',background: '#fff'});$('#error-email').css("display","none");$('.fancybox-skin #afq_phone').css({border: '#F59393 1px solid',background: '#FFF0F0'});if ($('#error-phone').length < 1){ $('.fancybox-skin #afq_phone').after('

10 digits phone number is required

');} } else if(($('.fancybox-skin #afq_zipcode').val() == '') || ($('.fancybox-skin #afq_zipcode').val().length != 5)) {$('.fancybox-skin #afq_phone').css({border: '1px solid #ccc',background: '#fff'});$('#error-phone').css("display","none");$('.fancybox-skin #afq_zipcode').css({border: '#F59393 1px solid',background: '#FFF0F0'});if ($('#error-zipcode').length < 1){ $('.fancybox-skin #afq_zipcode').after('

Invalid Zipcode!

');}} else {$('.fancybox-skin #afq_zipcode').css({border: '1px solid #ccc',background: '#fff'});$('#error-zipcode').css("display","none");var afq_name = $('.fancybox-skin #afq_name').val();var afq_email = $('.fancybox-skin #afq_email').val();var afq_repeat_mail = $('.fancybox-skin #afq_repeat_email').val();var afq_phone = $('.fancybox-skin #afq_phone').val();var afq_quote_quantity = $('.fancybox-skin #quote_quantity').html();var afq_product_id = product_id;var afq_comments = $('.fancybox-skin #afq_comments').val();var afq_zipcode = $('.fancybox-skin #afq_zipcode').val();var options = new Object();var parts = new Object(); var custom_comment ='';$.each($('.fancybox-skin .selected_parts'), function(index, el) { parts[el.getAttribute('data-optionId')] = el.getAttribute('data-optionValueId'); custom_comment +=$(this).text()+"\n";}); if(custom_comment !=''){ if(afq_comments !=''){ var afq_comments = custom_comment +"Message : "+afq_comments; }else{ var afq_comments = custom_comment; } } $.each($('.fancybox-skin .selected_options'), function(index, el) {options[el.getAttribute('data-optionId')] = el.getAttribute('data-optionValueId');});$.ajax({url: 'index.php?route=extension/module/askforquote/addQuote',type: 'post',data: {name: afq_name, email: afq_email, repeat_mail: afq_repeat_mail, phone:afq_phone, product_id: afq_product_id,group_id:group_id, comments: afq_comments, options:options, quantity:afq_quote_quantity, zipcode:afq_zipcode},dataType: 'json',beforeSend: function() {$(".fancybox-skin #afq_submit").hide(); $(".afq_loader").show(); },success: function(json) {$(".afq_loader").hide();$(".fancybox-skin #afq_submit").show();if(json=='success') {var url = "/index.php?route=extension/module/askforquote/success"; $(location).attr('href',url);} else if (json=='error') {$('.fancybox-skin #afq_zipcode').css({border: '#F59393 1px solid',background: '#FFF0F0'});$('.fancybox-skin #afq_zipcode').after('

We are sorry, but we do not deliver to your area. Please contact our store, and we can facilitate a pick up.

');} else {$('.fancybox-skin #afq_zipcode').css({border: '1px solid #ccc',background: '#fff'});$('#error-zipcode').css("display","none");}}});}});}});}var showAFQPopup = function (width,height,product_id,group_id) {$.ajax({url: 'index.php?route=extension/module/askforquote/checkRequiredOptions',type: 'post',data: $('#product input[type=\'text\'], #product input[type=\'hidden\'], #product input[type=\'radio\']:checked, #product input[type=\'checkbox\']:checked, #product select, #product textarea'),dataType: 'json',success: function(json) {if (!json['error']){openPopup(width, height, product_id,group_id);} else {if (json['error']) {$('.alert, .text-danger').remove();$('.form-group').removeClass('has-error');if (json['error']['option']) {for (i in json['error']['option']) {var element = $('#input-option' + i.replace('_', '-'));if (element.parent().hasClass('input-group')) {element.parent().after('

' + json['error']['option'][i] + '

');} else {element.after('

' + json['error']['option'][i] + '

');}}}if (json['error']['recurring']) {$('select[name=\'recurring_id\']').after('

' + json['error']['recurring'] + '

');}// Highlight any found errors$('.text-danger').parent().addClass('has-error');}}}});};

Refrigeration at A.K. Nahas in Beaver, PA (2024)
Top Articles
17 unforgettable things to do in Leiden in 2024
15 Cool Things to Do in Leiden on a Weekend - Dutch Wannabe
Craigslist Free En Dallas Tx
Food King El Paso Ads
Gamevault Agent
Vaya Timeclock
Did 9Anime Rebrand
Lexington Herald-Leader from Lexington, Kentucky
Ub Civil Engineering Flowsheet
Camstreams Download
Es.cvs.com/Otchs/Devoted
Www.paystubportal.com/7-11 Login
Mycarolinas Login
Slmd Skincare Appointment
Gwdonate Org
Healing Guide Dragonflight 10.2.7 Wow Warring Dueling Guide
Current Time In Maryland
Nj State Police Private Detective Unit
Shannon Dacombe
Khiara Keating: Manchester City and England goalkeeper convinced WSL silverware is on the horizon
Costco Great Oaks Gas Price
Fort Mccoy Fire Map
Rural King Credit Card Minimum Credit Score
Lola Bunny R34 Gif
Cvs El Salido
Rs3 Ushabti
Greensboro sit-in (1960) | History, Summary, Impact, & Facts
Elite Dangerous How To Scan Nav Beacon
The Banshees Of Inisherin Showtimes Near Broadway Metro
Top 20 scariest Roblox games
Vivification Harry Potter
Taylored Services Hardeeville Sc
417-990-0201
Learn4Good Job Posting
Envy Nails Snoqualmie
Where Do They Sell Menudo Near Me
To Give A Guarantee Promise Figgerits
Whitehall Preparatory And Fitness Academy Calendar
USB C 3HDMI Dock UCN3278 (12 in 1)
Gary Lezak Annual Salary
Aita For Announcing My Pregnancy At My Sil Wedding
Thothd Download
Best Haircut Shop Near Me
Noga Funeral Home Obituaries
2294141287
Craigslist Chautauqua Ny
Congruent Triangles Coloring Activity Dinosaur Answer Key
Read Love in Orbit - Chapter 2 - Page 974 | MangaBuddy
Haunted Mansion Showtimes Near The Grand 14 - Ambassador
Latest Posts
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 6492

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.