items
Set Event Date

Chairs Rentals for Rent

317640

Rent chairs in Cincinnati, Ohio from A&S Party Rental — ideal for weddings, parties, and family-friendly events of any size.

Professional delivery to Cincinnati Ohio, Mason Ohio, West Chester Ohio, Loveland Ohio and surrounding areas. Please submit a quote or contact us to be sure we service your area.

Chair Rentals in Cincinnati, Ohio

Make your next event comfortable and enjoyable for every guest with chair rentals from A&S Party Rental in Cincinnati, Ohio! Our chairs are perfect for weddings, birthday parties, family reunions, school events, and community gatherings, providing safe and stylish seating for guests of all ages.

We offer a variety of chair styles, including folding chairs, wedding chairs, and kid-friendly options, so you can mix and match to fit any event theme or setup. Pair your chairs with tables, linens, and décor to create a welcoming, fun, and family-friendly atmosphere.

A&S Party Rental handles delivery, setup, and pickup, taking the stress out of event planning so you can focus on celebrating with family and friends. We proudly serve Cincinnati and surrounding Ohio, Kentucky, and Indiana areas, helping families and communities host safe, comfortable, and memorable events.

Contact A&S Party Rental today to reserve your chairs and make your next Cincinnati event both stylish and family-friendly!

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['2741377'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2741377","rental_name":"Black Garden Chair Cincinnati","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221847055\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222741377\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Black Padded Resin Chair_934850098.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Black Padded Resin Chair_934850098.jpg\u0022}}"};

Black Garden Chair Cincinnati

from $4.65

Black+Garden+Chair+Cincinnati

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/black-garden-chair-cincinnati/

2741377

Limited

Textbox

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['1235545'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1235545","rental_name":"Crossback Chair Pads","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221213063\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221235545\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/crossbackpads_1698158927.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/crossbackpads_1698158927_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221213065\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221235545\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/crossbackchairs_1698158927.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/crossbackchairs_1698158927_big.png\u0022}}"};

Crossback Chair Pads

from $2.00

Crossback+Chair+Pads

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/crossback-chair-pads/

1235545

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['1214725'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1214725","rental_name":"Crossback Chair Rustic","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221213079\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221214725\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/crossbackchairs_1698159327.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/crossbackchairs_1698159327_big.jpg\u0022}}"};

Crossback Chair Rustic

from $12.50

Crossback+Chair+Rustic

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/crossback-chair-rustic/

1214725

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['989821'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"989821","rental_name":"Folding Garden Chair Fruitwood","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022612077\u0022,\u0022rentalimage_createtime\u0022:\u00221645472386\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221645472386\u0022,\u0022rentalimage_itemid\u0022:\u0022989821\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Fruitwood Folding Chair with Tan Pad_953592314.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/Fruitwood Folding Chair with Tan Pad_953592314_big.jpg\u0022}}"};

Folding Garden Chair Fruitwood

from $4.75

Folding++Garden+Chair+Fruitwood

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/folding-garden-chair-fruitwood/

989821

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['2315606'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2315606","rental_name":"Kids White Garden Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221469136\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222315606\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/kidschair_1714505496.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/kidschair_1714505496_big.jpg\u0022}}"};

Kids White Garden Chair

from $2.50

Kids+White+Garden+Chair

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/kids-white-garden-chair/

2315606

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['1777885'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1777885","rental_name":"Oval Open Back Resin Chair - Gold","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022944435\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221777885\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chair-Oval-Ring-Resin-Gold-Mono-Frame-ThinVisible-Z-Series-CORRG-MONO-THIN-ZG-T-Right-e1675273494299_1677271534.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chair-Oval-Ring-Resin-Gold-Mono-Frame-ThinVisible-Z-Series-CORRG-MONO-THIN-ZG-T-Right-e1675273494299_1677271534_big.jpeg\u0022}}"};

Oval Open Back Resin Chair – Gold

from $14.00

Oval+Open+Back+Resin+Chair+-+Gold

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/oval-open-back-resin-chair-gold/

1777885

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['1011659'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1011659","rental_name":"Silver Bar Stools","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022553481\u0022,\u0022rentalimage_createtime\u0022:\u00221640009524\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221640009524\u0022,\u0022rentalimage_itemid\u0022:\u00221011659\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/CH-31320-30-SIL-GG_85a83e41-91d7-4c40-8274-641e9306ce92_1699646891.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/CH-31320-30-SIL-GG_85a83e41-91d7-4c40-8274-641e9306ce92_1699646891_big.png\u0022}}"};

Silver Bar Stools

from $8.00

Silver+Bar+Stools

https://www.aspartyrental.com/cincinnati/inventory/event-furniture/silver-bar-stools/

1011659

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['2741369'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2741369","rental_name":"White Garden Chair Cincinnati","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221847045\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222741369\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/white pad chair_31044400.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/white pad chair_31044400.jpg\u0022}}"};

White Garden Chair Cincinnati

from $4.65

White+Garden+Chair+Cincinnati

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/white-garden-chair-cincinnati/

2741369

Limited

Textbox

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['2741477'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2741477","rental_name":"White Metal Folding Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221847095\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222741477\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/white folding chair_152853809.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/white folding chair_152853809.jpg\u0022}}"};

White Metal Folding Chair

from $2.45

White+Metal+Folding+Chair

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/white-metal-folding-chair/

2741477

Limited

Textbox

1

0

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['2730037'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2730037","rental_name":"White Slatted Garden Chair Cincinnati","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221835051\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222730037\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Resin-Folding-Chair-Slatted-White-C-Series-CFRW-SLATTED-CX-T-Chair-Swatch-1-e1670343040447_1698160128.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Resin-Folding-Chair-Slatted-White-C-Series-CFRW-SLATTED-CX-T-Chair-Swatch-1-e1670343040447_1698160128.png\u0022}}"};

White Slatted Garden Chair Cincinnati

from $4.70

White+Slatted+Garden+Chair+Cincinnati

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/white-slatted-garden-chair-cincinnati/

2730037

Limited

Textbox

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['2741471'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2741471","rental_name":"White Aluminum Chair Cincinnati (Setup Not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221847091\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222741471\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/fe8d858fb22031cfb3c4d740d90800a6.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/fe8d858fb22031cfb3c4d740d90800a6.jpg\u0022}}"};

White Aluminum Chair Cincinnati (Setup Not Included)

from $2.45

White+Aluminum+Chair+Cincinnati+%28Setup+Not+Included%29

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/white-aluminum-chair-cincinnati-setup-not-included/

2741471

Limited

Textbox

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['752521'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"752521","rental_name":"Black Leather Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022553479\u0022,\u0022rentalimage_createtime\u0022:\u00221640009468\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221640009468\u0022,\u0022rentalimage_itemid\u0022:\u0022752521\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Black leather chair_783804161.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Black leather chair_783804161_big.jpg\u0022}}"};

Black Leather Chair

from $110.00

Black+Leather+Chair

https://www.aspartyrental.com/cincinnati/inventory/event-furniture/black-leather-chair/

752521

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['2741513'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2741513","rental_name":"Mahogany Garden Chair Cincinnati","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221847109\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222741513\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bd3ffdf0df92c411414c2af85ed421d4.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bd3ffdf0df92c411414c2af85ed421d4.jpg\u0022}}"};

Mahogany Garden Chair Cincinnati

from $4.60

Mahogany+Garden+Chair+Cincinnati

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/mahogany-garden-chair-cincinnati/

2741513

Limited

Textbox

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['524077'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"524077","rental_name":"Folding Chair Setup","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145515\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022524077\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760624818.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760624818_big.png\u0022}}"};

Folding Chair Setup

from $1.00

Folding+Chair+Setup

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/folding-chair-setup/

524077

Unlimited

Textbox

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['396127'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"396127","rental_name":"Folding Chair Tear Down","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145527\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022396127\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760625212.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760625212_big.png\u0022}}"};

Folding Chair Tear Down

from $1.00

Folding+Chair+Tear+Down

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/folding-chair-tear-down/

396127

Unlimited

Textbox

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['545025'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"545025","rental_name":"Chiavari Chair Champagne","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022724281\u0022,\u0022rentalimage_createtime\u0022:\u00221654198499\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221654198499\u0022,\u0022rentalimage_itemid\u0022:\u0022545025\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chiavari Chair Champagne_30927953.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chiavari Chair Champagne_30927953_big.jpg\u0022}}"};

Chiavari Chair Champagne

from $9.25

Chiavari+Chair+Champagne

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-champagne/

545025

Limited

Textbox

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['235116'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"235116","rental_name":"Chiavari Chair Gold","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022724283\u0022,\u0022rentalimage_createtime\u0022:\u00221654198525\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221654198525\u0022,\u0022rentalimage_itemid\u0022:\u0022235116\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/2ebd0b6da98a7f64927573c34e032232.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/2ebd0b6da98a7f64927573c34e032232.jpg\u0022}}"};

Chiavari Chair Gold

from $9.25

Chiavari+Chair+Gold

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-gold/

235116

Limited

Textbox

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['400263'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"400263","rental_name":"Chiavari Chair Mahogany","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022724285\u0022,\u0022rentalimage_createtime\u0022:\u00221654198545\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221654198545\u0022,\u0022rentalimage_itemid\u0022:\u0022400263\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/8f820a72e53e51ca47f7f502edc8f126.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/3829cc08a0e6f2f9de4f6685269bd387.jpg\u0022}}"};

Chiavari Chair Mahogany

from $9.25

Chiavari+Chair+Mahogany

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-mahogany/

400263

Limited

Textbox

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['235124'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"235124","rental_name":"Chiavari Chair Silver","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146011\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022235124\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/silver_1760648768.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/silver_1760648768_big.png\u0022}}"};

Chiavari Chair Silver

from $9.25

Chiavari+Chair+Silver

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/silver-chiavari-chair-3-add-per-chair-if-not-covered-st/

235124

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['400261'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"400261","rental_name":"Chiavari Chair White","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022553469\u0022,\u0022rentalimage_createtime\u0022:\u00221640008875\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221640008875\u0022,\u0022rentalimage_itemid\u0022:\u0022400261\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/2b8f52be70e73e351a08768a7ca3ca0d.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/b4f0963b417932bf06a104c0b5e23bde.jpg\u0022}}"};

Chiavari Chair White

from $9.25

Chiavari+Chair+White

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-white-3-add-per-chair-if-not-covered-sta-2/

400261

Limited

Textbox

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['235145'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"235145","rental_name":"Chiavari Chair Pad Black","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022913887\u0022,\u0022rentalimage_createtime\u0022:\u00221675282795\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221675282795\u0022,\u0022rentalimage_itemid\u0022:\u0022235145\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chiavari Chair Pad Black_292504355.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chiavari Chair Pad Black_292504355_big.jpg\u0022}}"};

Chiavari Chair Pad Black

from $2.00

Chiavari+Chair+Pad+Black

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-pad-black/

235145

Limited

Textbox

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['235148'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"235148","rental_name":"Chiavari Chair Pad Ivory","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022773233\u0022,\u0022rentalimage_createtime\u0022:\u00221659992680\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221659992680\u0022,\u0022rentalimage_itemid\u0022:\u0022235148\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/bcfca71eb9251f8c3de4a18d7d7bf3fe.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/bcfca71eb9251f8c3de4a18d7d7bf3fe.jpg\u0022}}"};

Chiavari Chair Pad Ivory

from $2.00

Chiavari+Chair+Pad+Ivory

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-pad-ivory/

235148

Limited

Textbox

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['235133'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"235133","rental_name":"Chiavari Chair Pad White","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221213099\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022235133\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/EDD-CHiavari-Chair-soft-cushion-White-01_1698162271.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/EDD-CHiavari-Chair-soft-cushion-White-01_1698162271_big.jpg\u0022}}"};

Chiavari Chair Pad White

from $2.00

Chiavari+Chair+Pad+White

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-pad-white/

235133

Limited

Textbox

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['524079'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"524079","rental_name":"Chiavari Chair Setup","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145519\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022524079\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760624856.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760624856_big.png\u0022}}"};

Chiavari Chair Setup

from $2.00

Chiavari+Chair+Setup

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-setup/

524079

Unlimited

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['396129'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"396129","rental_name":"Chiavari Chair Tear Down","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145523\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022396129\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760625056.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760625056_big.png\u0022}}"};

Chiavari Chair Tear Down

from $2.00

Chiavari+Chair+Tear+Down

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/chiavari-chair-tear-down/

396129

Unlimited

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['668131'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"668131","rental_name":"Wood Bench 8\u0027 x 12\u0027\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022149001\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022668131\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/hercules-series-8-x-12-antique-rustic-solid-pine-folding-farm-bench-xa-b-96x12-gg-3_736499306.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/hercules-series-8-x-12-antique-rustic-solid-pine-folding-farm-bench-xa-b-96x12-gg-3_736499306_big.jpg\u0022}}"};

Wood Bench 8′ x 12″

from $35.00

Wood+Bench+8%27+x+12%22

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/wood-bench-8-x-12/

668131

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['633827'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"633827","rental_name":"Blue Kids Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022143969\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022633827\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Bluekidchair_137744017.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Bluekidchair_137744017_big.jpg\u0022}}"};

Blue Kids Chair

from $1.50

Blue+Kids+Chair

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/blue-kids-chair/

633827

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['633831'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"633831","rental_name":"Green Kids Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022553609\u0022,\u0022rentalimage_createtime\u0022:\u00221640021926\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221640021926\u0022,\u0022rentalimage_itemid\u0022:\u0022633831\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Greenkidchair_153627879.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Greenkidchair_153627879_big.jpg\u0022}}"};

Green Kids Chair

from $1.50

Green+Kids+Chair

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/green-kids-chair/

633831

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['633829'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"633829","rental_name":"Red Kids Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022553611\u0022,\u0022rentalimage_createtime\u0022:\u00221640021963\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221640021963\u0022,\u0022rentalimage_itemid\u0022:\u0022633829\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Redkidchair_703226840.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Redkidchair_703226840_big.jpg\u0022}}"};

Red Kids Chair

from $1.50

Red+Kids+Chair

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/red-kids-chair/

633829

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['758927'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"758927","rental_name":"Yellow Kids Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221359107\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022758927\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Safety-First-7-Piece-Childrens-Juvenile-Set-with-Pinch-Free-Folding-Chairs-and-Screw-in-Leg-Table_1709320575.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Safety-First-7-Piece-Childrens-Juvenile-Set-with-Pinch-Free-Folding-Chairs-and-Screw-in-Leg-Table_1709320575_big.jpg\u0022}}"};

Yellow Kids Chair

from $0.00

Yellow+Kids+Chair

https://www.aspartyrental.com/cincinnati/inventory/chair-rentals/yellow-kids-chair/

758927

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();
}
});
});

Need Chair Rentals in Dayton or Cincinnati Ohio?

A&S has the largest selection of Chair Rentals in Ohio. Whether you are looking for simple lightweight folding chair or perhaps something more elegant, we can help. 

Speaking of elegant, check out our beautiful Chiavari chair rentals!  Chiavari chairs are the hottest trend in wedding rentals and high end event rentals.  They combine sophisticated designs with increased comfort to provide a superior guest experience.  And, they are available in a variety of colors including gold, champagne, silver, white and mahogany.

So whether you are having a small, simple event or a large upscale event, consider your rental chair options.  First of all, Chairs and chair placement can have a big impact on our guest experience.  At A&S, We can help you consider your options that will allow your guests to be comfortable and enjoy your big day.

Moreover, With a large variety of colors and styles, A&S Party Rental is sure to have something to meet your needs.  Don’t forget to check out our chair covers and sashes as well as our table rental options. We also offer linen rentals for all your folding table rentals.

Need help with delivery?  Not to worry, we can handle that for you.  Call today to speak to one of our event rentals specialist to discuss your options.  Dayton at 937-885-5454 or Cincinnati at 513-315-9110.

Speaking of elegant chair rentals check out our beautiful Chiavari chair rentals!  Chiavari chairs rentals are the hottest trend in wedding rentals and high end event rentals.  They combine sophisticated designs with increased comfort to provide a superior guest experience.  And, they are available in a variety of colors including gold, champagne, silver, white and mahogany.

So whether you are having a small, simple event or a large upscale event, consider your chair rentals options.  First of all, Chairs and chair placement can have a big impact on our guest experience.  At A&S, We can help you consider your options that will allow your guests to be comfortable and enjoy your big day.

Moreover, With a large variety of colors and styles, A&S Party Rental is sure to have something to meet your needs.  Don’t forget to check out our chair covers and sashes as well as our table rental options. We also offer linen rentals for all your folding table rentals.

Need help with delivery?  Not to worry, we can handle that for you.  We can even set up your chair rentals. Call today in Dayton Ohio at 937-885-5454. 

Check out our Google Reviews Here.

 Chair Rentals Cincinnati Ohio 

A&S has the Best selection of Chair Rentals in Cincinnati Ohio. Whether you are looking for simple lightweight folding chair rental or perhaps something more elegant, we can help.Â