items
Set Event Date

Serving for Rent

38614

Serving rentals in Dayton, Ohio from A&S Party Rental — chafing dishes, hot boxes, coolers, and beverage dispensers for weddings, company picnics, and events.

Professional delivery to Franklin OH and surrounding areas. Please submit a quote or contact us to be sure we service your area.

Serving Rentals in Dayton, Ohio

Keep your food and drinks hot, cold, and ready to serve with A&S Party Rental’s serving rentals in Dayton! Perfect for weddings, company picnics, birthday parties, school events, and family gatherings, our chafing dishes, hot boxes, coolers, and beverage dispensers make buffet and beverage service effortless and elegant.

Serve everything from hot entrees to chilled drinks with professional-quality equipment that ensures your guests enjoy their food at the perfect temperature. Our rentals are clean, reliable, and easy to use, making setup stress-free for any event.

Whether it’s a wedding reception, company picnic, or backyard party, our serving rentals keep your event running smoothly and stylishly.

Serve with ease—contact A&S Party Rental today to reserve your serving rentals and make your Dayton event a hit!

function CategoryGallery(rental_id, rental_name, images_arr){ var rid = rental_id; var rentalName = rental_name; // Normalize images_arr: it may arrive as a JSON string, an object, or be undefined try { if (typeof images_arr === 'string' && images_arr.length) { images_arr = JSON.parse(images_arr); } } catch (e) { images_arr = {}; } if (!images_arr) images_arr = {}; // Where to append anchors and thumbs var $bigAfter = jQuery('#io_img_big2_' + rid); var $thumbAfter = jQuery('#io_img_thumb1_' + rid); if ($bigAfter.length && $thumbAfter.length) { var relVal = $bigAfter.attr('rel') || 'img_group noopener'; // Helper to validate a URL-like value (non-empty and not literal placeholders) var isValid = function (u) { if (!u) return false; var s = String(u).trim(); if (!s) return false; if (s.indexOf('%%') !== -1) return false; // ignore unreplaced placeholders if (s === '0' || s.toLowerCase() === 'null' || s.toLowerCase() === 'undefined') return false; return true; }; var addedThumbs = 0; // Iterate image map and append missing big anchors and thumbs for (var key in images_arr) { if (!images_arr.hasOwnProperty(key)) continue; var imgObj = images_arr[key] || {}; var href = imgObj["rentalimage_imagelocbig"] || imgObj["imagelocbig"] || imgObj["big"]; var src = imgObj["rentalimage_imageloc"] || imgObj["imageloc"] || imgObj["thumb"]; // Compute index consistent with existing templates var n = parseInt(key, 10); if (isNaN(n)) { // Try to derive from position by incrementing a counter if keys are not numeric n = 1; } // Category templates already include big1, big2, and thumb1; gallery adds 2+ when missing var bigIndex = n + 1; // matches io_cart_shortcode.html pattern var thumbIndex = n + 1; // thumb id series aligns with big series in newer code // Add big anchor if valid and not already present if (isValid(href)) { var bigId = '#io_img_big' + bigIndex + '_' + rid; if (jQuery(bigId).length === 0) { var $a = jQuery('', { rel: relVal, href: href, id: 'io_img_big' + bigIndex + '_' + rid }); $bigAfter.after($a); $bigAfter = $a; // maintain insertion point } } // Add thumbnail if valid and not already present if (isValid(src)) { var thumbId = '#io_img_thumb' + thumbIndex + '_' + rid; if (jQuery(thumbId).length === 0) { var $img = jQuery('', { 'class': 'io_image_thumb skip-lazy', title: rentalName, src: src, alt: rentalName, id: 'io_img_thumb' + thumbIndex + '_' + rid }).on('mouseover', function () { if (typeof updateMainPic === 'function') { updateMainPic(this); } }); $thumbAfter.after($img); $thumbAfter = $img; // maintain insertion point addedThumbs++; } } } // Reveal the thumbnail box if we added any extra thumbnails if (addedThumbs > 0) { jQuery('#io_img_thumb1_' + rid).closest('.io_image_thumbbox').show(); } } } // Function to generate list view content on demand (global scope) generateListViewContent = function() { console.log('[IO List View] Generating list view content dynamically'); jQuery('.io_item2_list').each(function() { var $item = jQuery(this); // Skip if already generated if ($item.find('.io_list_view_content').length > 0) { return; } // Extract rental_id from the item var rentalId = $item.find('.item_rentalid').text().trim(); if (!rentalId) { console.warn('[IO List View] No rental_id found for item, skipping'); return; } // Read data from dynamically named global variables // var description = String(window['data_description_' + rentalId] || "").replace(/[\r\n]+/g, "").trim(); var indoorOutdoor = String(window.io_category_data[rentalId]["indoor_outdoor"] || "").replace(/[\r\n]+/g, "").trim(); var staff = String(window.io_category_data[rentalId]["staff"] || "").replace(/[\r\n]+/g, "").trim(); var electric = String(window.io_category_data[rentalId]["electric"] || "").replace(/[\r\n]+/g, "").trim(); var dimensions = String(window.io_category_data[rentalId]["dimensions"] || "").replace(/[\r\n]+/g, "").trim(); // Helper function to strip HTML tags from text var stripHtml = function(html) { var tmp = document.createElement("DIV"); tmp.innerHTML = html; return (tmp.textContent || tmp.innerText || "").trim(); }; // Helper function to escape HTML to prevent XSS var escapeHtml = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return text.replace(/[&"']/g, function(m) { return map[m]; }); }; // Strip HTML tags from description // description = stripHtml(description); // Build the HTML structure with escaped content var html = '
'; // html += '
' + escapeHtml(description) + '
'; html += '
'; // Setup field - only add if valid if (indoorOutdoor && indoorOutdoor !== '0' && indoorOutdoor.length > 0) { html += '
'; html += 'Setup:'; html += '' + escapeHtml(indoorOutdoor) + ''; html += '
'; } // Operators field - only add if valid var operatorsText = staff ? staff + ' Adult Supervision Required' : ""; if (operatorsText && operatorsText !== '0 Adult Supervision Required' && operatorsText !== 'Adult Supervision Required' && operatorsText !== '0') { html += '
'; html += 'Operators:'; html += '' + escapeHtml(operatorsText) + ''; html += '
'; } // Power field - only add if valid var powerText = electric ? electric + ' Outlets' : ""; if (powerText && powerText !== '0 Outlets' && powerText !== '0.00 Outlets' && powerText !== 'Outlets' && powerText !== '0') { html += '
'; html += 'Power:'; html += '' + escapeHtml(powerText) + ''; html += '
'; } // Size field - only add if valid if (dimensions && dimensions !== '0' && dimensions.length > 0) { html += '
'; html += 'Size:'; html += '' + escapeHtml(dimensions) + ''; html += '
'; } html += '
'; // close io_item_details_labeled html += '
'; // close io_list_view_content // Insert before the buttons container $item.find('.io_buttons_container').before(html); }); } jQuery(document).ready(function($) { jQuery(".io_item2_list").each(function(){ var rentalId = jQuery(this).find('.item_rentalid').text().trim(); if (io_categoryVariantImages == 'on'){ CategoryGallery(rentalId, window.io_category_data[rentalId]['rental_name'], window.io_category_data[rentalId]["images_arr"]); } }); console.log('[IO View Toggle] Document ready, initializing view toggle functionality'); // Check if category_id has a numeric value to identify actual category pages // This must happen before any view state is applied var categoryId = $('.category_id').text().trim(); var hasNumericCategoryId = categoryId && !isNaN(categoryId) && categoryId.length > 0; if (!hasNumericCategoryId) { console.log('[IO View Toggle] No valid numeric category ID found, this is not a category page - skipping initialization'); return; } console.log('[IO View Toggle] Category page detected with categoryId:', categoryId); $('body').addClass('io-has-category-id'); // Show the toggle buttons on category pages $('.io_view_toggle_container').show(); console.log('[IO View Toggle] Toggle buttons displayed for category page'); // Track if view toggle has been initialized var isInitialized = false; // Initialize view toggle functionality function initViewToggle(force) { // Skip if already initialized unless forced if (isInitialized && !force) { console.log('[IO View Toggle] Already initialized, skipping'); return; } console.log('[IO View Toggle] Initializing view toggle functionality'); // Check if toggle buttons exist if ($('.io_view_toggle_btn').length === 0) { console.warn('[IO View Toggle] Toggle buttons not found in DOM'); return; } console.log('[IO View Toggle] Found', $('.io_view_toggle_btn').length, 'toggle buttons'); // Check if category container exists if ($('.io_catdiv2').length === 0) { console.warn('[IO View Toggle] Category container (.io_catdiv2) not found'); return; } console.log('[IO View Toggle] Found', $('.io_catdiv2').length, 'category containers'); // Get saved view preference from localStorage var savedView = localStorage.getItem('io_category_view') || 'tile'; console.log('[IO View Toggle] Retrieved saved view preference:', savedView); // Set initial view $('.io_catdiv2').removeClass('tile-view list-view').addClass(savedView + '-view'); console.log('[IO View Toggle] Applied initial view class:', savedView + '-view'); // Update button states $('.io_view_toggle_btn').removeClass('active'); $('.io_view_toggle_btn[data-view="' + savedView + '"]').addClass('active'); console.log('[IO View Toggle] Updated button states, active button:', savedView); // Generate list view content if initial view is list if (savedView === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available yet'); } } // Log current items count var itemCount = $('.io_item2_list').length; console.log('[IO View Toggle] Found', itemCount, 'items in category'); // Handle toggle button clicks using native JavaScript for better compatibility // Remove any existing event listeners first $('.io_view_toggle_btn').off('click.viewToggle'); // Use native JavaScript addEventListener for more reliable event handling var buttons = document.querySelectorAll('.io_view_toggle_btn'); console.log('[IO View Toggle] Attaching event listeners to', buttons.length, 'buttons using native JS'); buttons.forEach(function(button) { // Remove any existing listener var newButton = button.cloneNode(true); button.parentNode.replaceChild(newButton, button); // Add fresh event listener newButton.addEventListener('click', function(e) { e.preventDefault(); e.stopPropagation(); var view = this.getAttribute('data-view'); console.log('[IO View Toggle] Button clicked (native listener), switching to view:', view); // Generate list view content if switching to list view if (view === 'list') { if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } // Update button states document.querySelectorAll('.io_view_toggle_btn').forEach(function(btn) { btn.classList.remove('active'); }); this.classList.add('active'); console.log('[IO View Toggle] Updated button active states'); // Update grid view var catdiv = document.querySelector('.io_catdiv2'); if (catdiv) { catdiv.classList.remove('tile-view', 'list-view'); catdiv.classList.add(view + '-view'); console.log('[IO View Toggle] Applied view class:', view + '-view'); } // Save preference localStorage.setItem('io_category_view', view); console.log('[IO View Toggle] Saved view preference to localStorage:', view); // Debug: Log current layout state setTimeout(function() { if (catdiv) { var containerClasses = catdiv.className; var visibleItems = document.querySelectorAll('.io_item2_list:not([style*="display: none"])').length; console.log('[IO View Toggle] Layout updated - Container classes:', containerClasses); console.log('[IO View Toggle] Visible items after view change:', visibleItems); // Check if list view content is properly shown/hidden if (view === 'list') { var visibleListContent = document.querySelectorAll('.io_list_view_content:not([style*="display: none"])').length; console.log('[IO View Toggle] Visible list content elements:', visibleListContent); } } }, 100); }, true); // Use capture phase console.log('[IO View Toggle] Event listener attached to button:', newButton.getAttribute('data-view')); }); console.log('[IO View Toggle] Event handlers attached successfully'); // Mark as initialized isInitialized = true; } // Initialize when page loads console.log('[IO View Toggle] Starting initial setup'); initViewToggle(); // Also initialize after dynamic content loads (if applicable) $(document).on('io_content_loaded', function() { console.log('[IO View Toggle] Dynamic content loaded event detected, reinitializing'); initViewToggle(); }); // Debug: Monitor for DOM changes that might affect our functionality if (typeof MutationObserver !== 'undefined') { var mutationTimeout; var lastItemCount = $('.io_item2_list').length; var observer = new MutationObserver(function(mutations) { // Debounce: clear existing timeout and set a new one clearTimeout(mutationTimeout); mutationTimeout = setTimeout(function() { var currentItemCount = $('.io_item2_list').length; // Only trigger if we have new items that weren't there before if (currentItemCount > lastItemCount) { console.log('[IO View Toggle] New items detected in DOM (' + lastItemCount + ' -> ' + currentItemCount + ')'); lastItemCount = currentItemCount; // If already initialized, just generate list view content for new items if in list view if (isInitialized) { var currentView = localStorage.getItem('io_category_view') || 'tile'; if (currentView === 'list') { console.log('[IO View Toggle] Generating list view content for new items'); if (typeof generateListViewContent === 'function') { generateListViewContent(); } else { console.warn('[IO View Toggle] generateListViewContent function not available'); } } } else { // Not initialized yet, so initialize console.log('[IO View Toggle] Initializing due to new items'); initViewToggle(); } } }, 250); // 250ms debounce }); observer.observe(document.body, { childList: true, subtree: true }); console.log('[IO View Toggle] DOM mutation observer started'); } // Debug: Log window resize events that might affect responsive layout $(window).on('resize.viewToggle', function() { var windowWidth = $(window).width(); var currentView = $('.io_catdiv2').hasClass('list-view') ? 'list' : 'tile'; console.log('[IO View Toggle] Window resized to:', windowWidth, 'px, current view:', currentView); }); console.log('[IO View Toggle] Initialization complete'); });

window.io_category_data = window.io_category_data || {}; window.io_category_data['1239767'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1239767","rental_name":"15\u0027\u0027 Square Serving Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022259843\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221239767\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Small Serving Plate_884443025.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Small Serving Plate_884443025_big.jpg\u0022}}"};

15″ Square Serving Plate

from $9.00

15%22+Square+Serving+Plate

https://www.aspartyrental.com/lexington/inventory/serving/15-square-serving-plate/

1239767

Limited

Dropdown

10

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1239763'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1239763","rental_name":"16\u0027\u0027 Serving Bowl","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022259839\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221239763\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Large Serving Bowl_452329964.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Large Serving Bowl_452329964_big.jpg\u0022}}"};

16″ Serving Bowl

from $9.00

16%22+Serving+Bowl

https://www.aspartyrental.com/lexington/inventory/serving/16-serving-bowl/

1239763

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1239765'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1239765","rental_name":"18\u0027\u0027 Oval Serving Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022259841\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u00221239765\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Large Round Serving Plate_255642406.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Large Round Serving Plate_255642406_big.jpg\u0022}}"};

18″ Oval Serving Plate

from $9.00

18%22+Oval+Serving+Plate

https://www.aspartyrental.com/lexington/inventory/serving/18-oval-serving-plate/

1239765

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2264049'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"26.5 tall X 7 inches wide","rental_id":"2264049","rental_name":"Acrylic Square Beverage Dispenser 3 Gallon","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221415759\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222264049\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/beveragedespenser_1711116097.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/beveragedespenser_1711116097_big.jpg\u0022}}"};

Acrylic Square Beverage Dispenser 3 Gallon

from $55.00

Acrylic+Square+Beverage+Dispenser+3+Gallon

https://www.aspartyrental.com/lexington/inventory/serving/tall-square-beverage-dispenser-3-gallon/

2264049

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370236'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"21inx12in","rental_id":"370236","rental_name":"Chafing Dishes\/Gel Sterno not included","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290087\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370236\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chafing Dishes_151341665.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chafing Dishes_151341665_big.jpg\u0022}}"};

Chafing Dishes/Gel Sterno not included

from $21.99

Chafing+Dishes%2FGel+Sterno+not+included

https://www.aspartyrental.com/lexington/inventory/serving/chafing-dishes/

370236

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370230'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370230","rental_name":"Champagne Bucket w\/ Stand","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290081\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370230\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/3e6ba5789f0e634f249bde933233ead3.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9f98cefbf91802a978a79169391aee63.jpg\u0022}}"};

Champagne Bucket w/ Stand

from $21.00

Champagne+Bucket+w%2F+Stand

https://www.aspartyrental.com/lexington/inventory/serving/champagne-bucket-w-stand/

370230

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['702797'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"702797","rental_name":"Cold Beverage Dispenser 5 Gallon","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022154713\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022702797\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Large Cold Beverage Dispenser_385135321.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Large Cold Beverage Dispenser_385135321_big.jpg\u0022}}"};

Cold Beverage Dispenser 5 Gallon

from $45.00

Cold+Beverage+Dispenser+5+Gallon

https://www.aspartyrental.com/lexington/inventory/serving/cold-beverage-dispenser-5-gallon/

702797

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['702795'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"702795","rental_name":"Cold Beverage Dispenser Rose Gold 3 Gallon","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821395\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022702795\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5658_1677864082.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5658_1677864082_big.jpg\u0022}}"};

Cold Beverage Dispenser Rose Gold 3 Gallon

from $27.25

Cold+Beverage+Dispenser+Rose+Gold+3+Gallon

https://www.aspartyrental.com/lexington/inventory/serving/cold-beverage-dispensers-3-gallon/

702795

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2020815'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2020815","rental_name":"Double Base Beverage Dispenser 2-3.5 gallon","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221168869\u0022,\u0022rentalimage_createtime\u0022:\u00221693326459\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221693326459\u0022,\u0022rentalimage_itemid\u0022:\u00222020815\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/double drink dispensor_227598180.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/double drink dispensor_227598180_big.jpg\u0022}}"};

Double Base Beverage Dispenser 2-3.5 gallon

from $60.00

Double+Base+Beverage+Dispenser+2-3.5+gallon

https://www.aspartyrental.com/lexington/inventory/serving/double-base-beverage-dispenser-2-3-5-gallon/

2020815

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370240'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370240","rental_name":"Executive Chiller","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290091\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370240\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/ExecutiveChiller_554916584.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/ExecutiveChiller_554916584_big.jpg\u0022}}"};

Executive Chiller

from $52.00

Executive+Chiller

https://www.aspartyrental.com/lexington/inventory/serving/executive-chiller/

370240

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1054025'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1054025","rental_name":"Hot Beverage Dispenser 3 gallon","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022524003\u0022,\u0022rentalimage_createtime\u0022:\u00221634745731\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221634745731\u0022,\u0022rentalimage_itemid\u0022:\u00221054025\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Hot Beverage Dispenser_773662236.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Hot Beverage Dispenser_773662236_big.jpg\u0022}}"};

Hot Beverage Dispenser 3 gallon

from $33.00

Hot+Beverage+Dispenser+3+gallon

https://www.aspartyrental.com/lexington/inventory/serving/hot-beverage-dispenser/

1054025

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2552267'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2552267","rental_name":"Insulated Beverage 2.5 Gallon Dispenser (Hot\/Cold)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221679189\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222552267\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0457 (1)_1732564660.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0457 (1)_1732564660_big.jpg\u0022}}"};

Insulated Beverage 2.5 Gallon Dispenser (Hot/Cold)

from $40.00

Insulated+Beverage+2.5+Gallon+Dispenser+%28Hot%2FCold%29

https://www.aspartyrental.com/lexington/inventory/serving/insulated-beverage-2-5-gallon-dispenser-hot-cold/

2552267

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['1697275'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1697275","rental_name":"Large Hot Box Insulated","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022956485\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221697275\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5660_1677863987.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_5660_1677863987_big.jpg\u0022}}"};

Large Hot Box Insulated

from $30.00

Large+Hot+Box+Insulated

https://www.aspartyrental.com/lexington/inventory/serving/large-hot-box-insulated/

1697275

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['2599819'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"9x6 3\/8x17 1\/2","rental_id":"2599819","rental_name":"Portable Hot Beverage Dispenser","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221728507\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222599819\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/2286380_1736870494.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/2286380_1736870494_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221728503\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222599819\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/2287809_1736870493.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/2287809_1736870493_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221728505\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222599819\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20250114_104740_1736870494.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20250114_104740_1736870494_big.jpg\u0022}}"};

Portable Hot Beverage Dispenser

from $25.00

Portable+Hot+Beverage+Dispenser

https://www.aspartyrental.com/lexington/inventory/serving/portable-hot-beverage-dispenser-2/

2599819

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370238'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370238","rental_name":"Punch Fountain 5 Gallon Silver","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290089\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370238\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Punch Fountain 5 Gallon_145252682.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Punch Fountain 5 Gallon_145252682_big.jpg\u0022}}"};

Punch Fountain 5 Gallon Silver

from $125.00

Punch+Fountain+5+Gallon+Silver

https://www.aspartyrental.com/lexington/inventory/serving/punch-fountain-5-gallon-silver/

370238

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370234'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"20\u0027\u0027 Lengthx2 1\/2 \u0027\u0027 DeepX 12\u0027\u0027width","rental_id":"370234","rental_name":"Roll Top Chafer\/Does not include Sterno","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290085\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370234\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/26c7ff97e5d2265714b148e65ac29435.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/2d2cf3581bd103390e4c0735879dd122.jpg\u0022}}"};

Roll Top Chafer/Does not include Sterno

from $32.00

Roll+Top+Chafer%2FDoes+not+include+Sterno

https://www.aspartyrental.com/lexington/inventory/serving/roll-top-chafer/

370234

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370232'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370232","rental_name":"Round Roll Top Chafer","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290083\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370232\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5776816ec00794c5b85bef25e0ae7017.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/d887f319dcf4e807d41f118194394e03.jpg\u0022}}"};

Round Roll Top Chafer

from $32.00

Round+Roll+Top+Chafer

https://www.aspartyrental.com/lexington/inventory/serving/round-roll-top-chafer/

370232

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370224'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370224","rental_name":"Serving","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821417\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370224\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/How to be a good server- Top 10 server etiquette tips_750x403_1666808686.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/How to be a good server- Top 10 server etiquette tips_750x403_1666808686_big.png\u0022}}"};

Serving

from $0.00

Serving

https://www.aspartyrental.com/lexington/inventory/serving/serving/

370224

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['678347'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"678347","rental_name":"Silver Hammered Pitcher","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022150559\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022678347\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Hammered Silver Pitcher_497417626.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Hammered Silver Pitcher_497417626_big.jpg\u0022}}"};

Silver Hammered Pitcher

from $4.50

Silver+Hammered+Pitcher

https://www.aspartyrental.com/lexington/inventory/serving/hammered-silver-pitcher/

678347

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370226'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370226","rental_name":"150QT Cooler","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290077\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370226\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/dcba6b35e15bde71c2ea4218e5d7f629.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/086ea443ec5bcf2322470e2ea03b0610.jpg\u0022}}"};

150QT Cooler

from $40.00

150QT+Cooler

https://www.aspartyrental.com/lexington/inventory/serving/150qt-cooler/

370226

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['227369'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"227369","rental_name":"Small Hot Box Insulated","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821295\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022227369\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/TUUpEflQ_1666808219.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/TUUpEflQ_1666808219_big.jpeg\u0022}}"};

Small Hot Box Insulated

from $0.00

Small+Hot+Box+Insulated

https://www.aspartyrental.com/lexington/inventory/serving/hot-box-insulated/

227369

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['370210'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370210","rental_name":"Keg Cooler","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290075\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370210\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/e5a0093880cf88b97cdff3ba41a07f5c.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4df78703b8ccd54e1df4a3c8f8645eaf.jpg\u0022}}"};

Keg Cooler

from $25.00

Keg+Cooler

https://www.aspartyrental.com/lexington/inventory/serving/keg-cooler/

370210

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

window.io_category_data = window.io_category_data || {}; window.io_category_data['216403'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"216403","rental_name":"Champagne Fountain Lighting","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821349\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216403\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Champagne-Fountain-2-max-1000x1000_1666808283.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Champagne-Fountain-2-max-1000x1000_1666808283_big.jpg\u0022}}"};

Champagne Fountain Lighting

from $0.00

Champagne+Fountain+Lighting

https://www.aspartyrental.com/lexington/inventory/serving/lighted-3-tier-cascading-fountain/

216403

Limited

Dropdown

1

item unavailable (change date)

jQuery(document).ready(function () {
// Hide price when zero
jQuery(".rentNameIO_pricespan").each(function () {
if( !Number( this.textContent.replace(/[^0-9.-]+/g,"") ) ){
jQuery(this.parentElement).hide();
}
});
});

Essential Serving Equipment for Events

Make serving at your event effortless with A&S Party Rental’s top-quality serving equipment. From elegant trays to practical chafing dishes, we have everything you need to ensure seamless service and impress your guests.

Our diverse selection of serving equipment includes trays, platters, chafing dishes, and more, all designed to meet the needs of any event, whether it’s a wedding, corporate function, or private party. With our reliable equipment, you can focus on hosting while we take care of the details.

Renting serving equipment from A&S Party Rental not only saves you time and effort but also ensures that your event runs smoothly from start to finish. Our high-quality products are meticulously maintained to guarantee their performance and presentation.

Browse our inventory now to find the perfect serving equipment for your event. Rent with confidence and elevate your catering experience with A&S Party Rental!