Table Rentals in Dayton, Ohio- 

items
Set Event Date

Table Rentals for Rent

44511

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

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

Table Rentals in Cincinnati, Ohio

Make every meal and gathering comfortable with table rentals from A&S Party Rental in Cincinnati, Ohio! Our wide selection of tables is perfect for weddings, birthday parties, family reunions, school events, and community celebrations, ensuring everyone has a place to sit, eat, and enjoy the event.

We offer round tables, rectangular tables, cocktail tables, and farm house tables to fit events of any size and style. Pair your tables with chairs, linens, and décor to create a fun, festive, and family-friendly atmosphere. Our tables are clean, sturdy, and ready to handle everything from casual backyard picnics to elegant outdoor weddings.

Our professional team provides delivery, setup, and pickup, making it easy for you to focus on fun and family time. A&S Party Rental proudly serves Cincinnati and surrounding Ohio, Kentucky, and Indiana areas, helping families and communities host safe, organized, and memorable events.

Contact A&S Party Rental today to reserve your tables and make your next celebration in Cincinnati, Ohio both comfortable and fun for everyone!

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['1277749'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1277749","rental_name":"4\u0027 Square Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821433\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221277749\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/31p2Lwez5KL._AC__1666809279.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/31p2Lwez5KL._AC__1666809279_big.jpg\u0022}}"};

4′ Square Table

from $10.50

4%27+Square+Table

https://www.aspartyrental.com/rentals/table-rentals/4-square-table/

1277749

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['1272887'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1272887","rental_name":"5\u0027 Round Brown Plastic Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221079081\u0022,\u0022rentalimage_createtime\u0022:\u00221685744364\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221685744364\u0022,\u0022rentalimage_itemid\u0022:\u00221272887\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/3640 Table - 60 Rhino - Brown-262x334_308787300.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/3640 Table - 60 Rhino - Brown-262x334_308787300_big.jpg\u0022}}"};

5′ Round Brown Plastic Table

from $12.00

5%27+Round+Brown+Plastic+Table

https://www.aspartyrental.com/rentals/table-rentals/5ft-or-60in-round-brown-plastic-resin-table/

1272887

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['1809245'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1809245","rental_name":"6\u0027 Round Brown Plastic","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976891\u0022,\u0022rentalimage_createtime\u0022:\u00221679089021\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221679089021\u0022,\u0022rentalimage_itemid\u0022:\u00221809245\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/72 round table rental_4827086.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/72 round table rental_4827086_big.jpg\u0022}}"};

6′ Round Brown Plastic

from $16.00

6%27+Round+Brown+Plastic

https://www.aspartyrental.com/rentals/table-rentals/6-round-brown-plastic/

1809245

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['1272893'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1272893","rental_name":"8\u0027 Brown Plastic Resin Banquet Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976885\u0022,\u0022rentalimage_createtime\u0022:\u00221679088565\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221679088565\u0022,\u0022rentalimage_itemid\u0022:\u00221272893\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/8 rhino_967121175.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/8 rhino_967121175_big.jpg\u0022}}"};

8′ Brown Plastic Resin Banquet Table

from $10.95

8%27+Brown+Plastic+Resin+Banquet+Table

https://www.aspartyrental.com/rentals/emergency-disaster-services/8-brown-plastic-resin-banquet-table/

1272893

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['2387919'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2387919","rental_name":"Bistro Table Black Plastic 42\u0027\u0027 Tall","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221793011\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222387919\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/blackbistro_1739977523.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/blackbistro_1739977523_big.png\u0022}}"};

Bistro Table Black Plastic 42″ Tall

from $15.00

Bistro+Table+Black+Plastic+42%27%27+Tall

https://www.aspartyrental.com/rentals/table-rentals/black-plastic-bistro-table/

2387919

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['1216473'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1216473","rental_name":"Conference Table 8\u0027 x 18\u0027\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821435\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221216473\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Conference-Table_1666809321.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Conference-Table_1666809321_big.jpg\u0022}}"};

Conference Table 8′ x 18″

from $8.50

Conference+Table+8%27+x+18%22

https://www.aspartyrental.com/rentals/table-rentals/conference-table-8-x-18/

1216473

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['2697973'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697973","rental_name":"High Rustic Farm Bistro Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809945\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697973\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Table_-36-Round-x-39-High-Folding-Farm-Antique-500-0530-2_600x480_Perspective_1741035504.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Table_-36-Round-x-39-High-Folding-Farm-Antique-500-0530-2_600x480_Perspective_1741035504_big.png\u0022}}"};

High Rustic Farm Bistro Table

from $40.00

High+Rustic+Farm+Bistro+Table

https://www.aspartyrental.com/rentals/table-rentals/high-rustic-farm-bistro-table/

2697973

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['1277755'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1277755","rental_name":"Rustic Wood Topper Barrel Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821437\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221277755\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/il_570xN.1861358347_2ghy_1666809376.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/il_570xN.1861358347_2ghy_1666809376_big.jpg\u0022}}"};

Rustic Wood Topper Barrel Table

from $25.00

Rustic+Wood+Topper+Barrel+Table

https://www.aspartyrental.com/rentals/table-rentals/rustic-wood-topper-barrel-table/

1277755

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['1216437'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1216437","rental_name":"Serpentine Table 5\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022504709\u0022,\u0022rentalimage_createtime\u0022:\u00221630693714\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221630693714\u0022,\u0022rentalimage_itemid\u0022:\u00221216437\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9foot_dia_serpentine_table_aluminium_edge_bt-t9sta-_049clean_1_625820717.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9foot_dia_serpentine_table_aluminium_edge_bt-t9sta-_049clean_1_625820717_big.jpg\u0022}}"};

Serpentine Table 5′

from $10.00

Serpentine+Table+5%27

https://www.aspartyrental.com/rentals/table-rentals/serpentine-table-5/

1216437

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['439393'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"439393","rental_name":"Umbrella table w\/ umbrella (colors may vary)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221249939\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439393\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/_- Edited_1677612234_1702055292.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/_- Edited_1677612234_1702055292_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221611987\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439393\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3001_1726068225.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_3001_1726068225_big.jpg\u0022}}"};

Umbrella table w/ umbrella (colors may vary)

from $45.00

Umbrella+table+w%2F+umbrella+%28colors+may+vary%29

https://www.aspartyrental.com/rentals/table-rentals/umbrella-table-w-umbrella-white/

439393

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['2418929'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2418929","rental_name":"White Plastic Bistro Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145479\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222418929\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-16 9.59.03 AM_1760623163.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-10-16 9.59.03 AM_1760623163_big.png\u0022}}"};

White Plastic Bistro Table

from $15.00

White+Plastic+Bistro+Table

https://www.aspartyrental.com/rentals/table-rentals/white-plastic-bistro-table/

2418929

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['884875'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"884875","rental_name":"Farm Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221081081\u0022,\u0022rentalimage_createtime\u0022:\u00221685971128\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221685971128\u0022,\u0022rentalimage_itemid\u0022:\u0022884875\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Farm Table_231629845.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Farm Table_231629845_big.jpg\u0022}}"};

Farm Table

from $185.00

Farm+Table

https://www.aspartyrental.com/rentals/table-rentals/farm-table/

884875

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['370514'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370514","rental_name":"4\u0027 Rectangle Wood Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821439\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370514\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4ft-banquet-table_1666809437.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4ft-banquet-table_1666809437_big.jpg\u0022}}"};

4′ Rectangle Wood Table (Setup not Included)

from $8.50

4%27+Rectangle+Wood+Table+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/4-rectangle-table-setup-not-included/

370514

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['370554'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370554","rental_name":"4\u0027 Round Wood Table (48\u0027\u0027) (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821441\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370554\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Table-72in-round-wood-table-l_1666809507.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Table-72in-round-wood-table-l_1666809507_big.jpg\u0022}}"};

4′ Round Wood Table (48″) (Setup not Included)

from $8.50

4%27+Round+Wood+Table+%2848%22%29+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/4-round-table-48-setup-not-included-2/

370554

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['370550'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370550","rental_name":"Heart Table (4\u0027)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821443\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370550\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (1)_1666809563.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (1)_1666809563_big.jpg\u0022}}"};

Heart Table (4′)

from $10.00

Heart+Table+%284%27%29

https://www.aspartyrental.com/rentals/table-rentals/heart-table-4/

370550

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['390329'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"390329","rental_name":"6\u0027 Rectangle Wood Table(Set Up Not Included\/Must Protect Fr","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821445\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022390329\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/6-foot-banquet-wood-table-metal-edge_1080_4_1666809785.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/6-foot-banquet-wood-table-metal-edge_1080_4_1666809785_big.png\u0022}}"};

6′ Rectangle Wood Table(Set Up Not Included/Must Protect Fr

from $10.50

6%27+Rectangle+Wood+Table%28Set+Up+Not+Included%2FMust+Protect+Fr

https://www.aspartyrental.com/rentals/table-rentals/6-banquet-table/

390329

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['370516'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370516","rental_name":"6\u0027 Rectangle Plastic Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821497\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370516\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable_1753880421.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable_1753880421_big.jpg\u0022}}"};

6′ Rectangle Plastic Table (Setup not Included)

from $9.25

6%27+Rectangle+Plastic+Table+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/6-festival-banquet-plastic-resin-table-setup-not-included/

370516

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['449379'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"6\u00272.5\u0027\u0027L X 3\u0027W X 2\u00275\u0027\u0027H","rental_id":"449379","rental_name":"6\u0027 Rustic Wood Table Topper (for 6\u0027 Banquet Table Colors wil","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145481\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022449379\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/woodtopper_1760623249.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/woodtopper_1760623249_big.png\u0022}}"};

6′ Rustic Wood Table Topper (for 6′ Banquet Table Colors wil

from $40.00

6%27+Rustic+Wood+Table+Topper+%28for+6%27+Banquet+Table+Colors+wil

https://www.aspartyrental.com/rentals/table-rentals/6-rustic-wood-table-topper-for-6-banquet-table-colors-wil/

449379

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['370518'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370518","rental_name":"60\u0027\u0027 Round Plastic Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022832981\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370518\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable1_1753880475.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable1_1753880475_big.jpg\u0022}}"};

60″ Round Plastic Table (Setup not Included)

from $12.50

60%22+Round+Plastic+Table+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/60-round-plastic-resin-table-setup-not-included/

370518

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['950139'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"950139","rental_name":"5\u0027 Round Tan Plastic Resin Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022832985\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022950139\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable1_1753881233.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable1_1753881233_big.jpg\u0022}}"};

5′ Round Tan Plastic Resin Table

from $12.00

5%27+Round+Tan+Plastic+Resin+Table

https://www.aspartyrental.com/rentals/table-rentals/5-round-tan-plastic-resin-table/

950139

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['370530'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370530","rental_name":"5\u0027 Round Wood Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022994239\u0022,\u0022rentalimage_createtime\u0022:\u00221680196170\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221680196170\u0022,\u0022rentalimage_itemid\u0022:\u0022370530\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/round-table_1612468155_big_1668005185.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/round-table_1612468155_big_1668005185_big.png\u0022}}"};

5′ Round Wood Table (Setup not Included)

from $12.00

5%27+Round+Wood+Table+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/5-round-wood-top-table-setup-not-included/

370530

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['370532'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370532","rental_name":"63\u0027\u0027 Round Plastic Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022832987\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370532\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable1_1753880490.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/browntable1_1753880490_big.jpg\u0022}}"};

63″ Round Plastic Table (Setup not Included)

from $12.00

63%22+Round+Plastic+Table+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/63-round-plastic-resin-table-setup-not-included/

370532

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['370536'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370536","rental_name":"6\u0027 Round W. Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022832989\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370536\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/round-table_1612468155_big_1668005258.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/round-table_1612468155_big_1668005258_big.png\u0022}}"};

6′ Round W. Table (Setup not Included)

from $18.00

6%27+Round+W.+Table++%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/6ft-72in-round-wood-top-table-setup-not-included/

370536

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['370520'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370520","rental_name":"8\u0027 Festival Banquet Plastic Resin Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221064541\u0022,\u0022rentalimage_createtime\u0022:\u00221684525552\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221684525552\u0022,\u0022rentalimage_itemid\u0022:\u0022370520\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/zzz_985769_big_1668005304.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/zzz_985769_big_1668005304_big.png\u0022}}"};

8′ Festival Banquet Plastic Resin Table (Setup not Included)

from $11.50

8%27+Festival+Banquet+Plastic+Resin+Table+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/8-festival-banquet-plastic-resin-table-setup-not-included/

370520

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['950135'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"950135","rental_name":"8\u0027 Tan Plastic Resin Banquet Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022832995\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022950135\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/zzz_985769_big_1668005327.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/zzz_985769_big_1668005327_big.png\u0022}}"};

8′ Tan Plastic Resin Banquet Table

from $11.50

8%27+Tan+Plastic+Resin+Banquet+Table

https://www.aspartyrental.com/rentals/table-rentals/8-tan-plastic-resin-banquet-table/

950135

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['475471'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"475471","rental_name":"8\u0027 Wood Top Banquet Table (Setup Not Included\/ Must Protect","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221064543\u0022,\u0022rentalimage_createtime\u0022:\u00221684525583\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221684525583\u0022,\u0022rentalimage_itemid\u0022:\u0022475471\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/31bjGcaqiPL._AC__1668005357.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/31bjGcaqiPL._AC__1668005357_big.jpg\u0022}}"};

8′ Wood Top Banquet Table (Setup Not Included/ Must Protect

from $10.95

8%27+Wood+Top+Banquet+Table+%28Setup+Not+Included%2F+Must+Protect

https://www.aspartyrental.com/rentals/table-rentals/8-wood-top-banquet-table-setup-not-included-must-protect/

475471

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['423247'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"9\u0027L X 3\u0027W X 2\u00277\u0027\u0027H","rental_id":"423247","rental_name":"8\u0027 Rustic Wood Table Topper (for 8\u0027 Banquet Table Colors wil","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145483\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022423247\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/woodtopper_1760623264.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/woodtopper_1760623264_big.png\u0022}}"};

8′ Rustic Wood Table Topper (for 8′ Banquet Table Colors wil

from $48.00

8%27+Rustic+Wood+Table+Topper+%28for+8%27+Banquet+Table+Colors+wil

https://www.aspartyrental.com/rentals/table-rentals/8-rustic-wood-table-topper-for-8-banquet-table-colors-wil/

423247

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['449383'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"5\u00274\u0027\u0027L X 3\u00274\u0027\u0027W X 3\u00274\u0027\u0027 H","rental_id":"449383","rental_name":"Bistro Rustic Wood Topper (Colors will vary)","images_arr":"{}"};

Bistro Rustic Wood Topper (Colors will vary)

from $30.00

Bistro+Rustic+Wood+Topper+%28Colors+will+vary%29

https://www.aspartyrental.com/rentals/table-rentals/bistro-rustic-wood-topper-colors-will-vary/

449383

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['370522'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370522","rental_name":"30\u0027\u0027 Bistro Wood Table (Setup not Included)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833003\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022370522\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/_- Edited (1)_1677612537.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/_- Edited (1)_1677612537_big.png\u0022}}"};

30″ Bistro Wood Table (Setup not Included)

from $15.00

30%22+Bistro+Wood+Table+%28Setup+not+Included%29

https://www.aspartyrental.com/rentals/table-rentals/bistro-wood-top-table-setup-not-included/

370522

Limited

Dropdown

1

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['236787'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"236787","rental_name":"Chill and Fill Dividers","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002260759\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022236787\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/16445308acee2948e4982e72bb29d15d.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/16445308acee2948e4982e72bb29d15d.jpg\u0022}}"};

Chill and Fill Dividers

from $0.00

Chill+and+Fill+Dividers

https://www.aspartyrental.com/rentals/table-rentals/chill-and-fill-extenders/

236787

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['227607'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"227607","rental_name":"Chill and Fill Table (D)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022512038\u0022,\u0022rentalimage_createtime\u0022:\u00221632365887\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221632365887\u0022,\u0022rentalimage_itemid\u0022:\u0022227607\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/f6a6da05603d517bb7cbea16124758d9.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/f6a6da05603d517bb7cbea16124758d9.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022512040\u0022,\u0022rentalimage_createtime\u0022:\u00221632365887\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221632365887\u0022,\u0022rentalimage_itemid\u0022:\u0022227607\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chill N Fill Table_511581500.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Chill N Fill Table_511581500_big.jpg\u0022}}"};

Chill and Fill Table (D)

from $0.00

Chill+and+Fill+Table+%28D%29

https://www.aspartyrental.com/rentals/table-rentals/chill-and-fill-table/

227607

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['633819'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"633819","rental_name":"Blue Folding Kids Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145485\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022633819\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/51tJCHGwhmS._UF894,1000_QL80__1760623547.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/51tJCHGwhmS._UF894,1000_QL80__1760623547_big.jpg\u0022}}"};

Blue Folding Kids Table

from $8.50

Blue+Folding+Kids+Table

https://www.aspartyrental.com/rentals/table-rentals/white-4-kids-table/

633819

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['633847'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"633847","rental_name":"Pencil Kids Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022143977\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022633847\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (2)_1706978300.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (2)_1706978300_big.jpeg\u0022}}"};

Pencil Kids Table

from $8.50

Pencil+Kids+Table

https://www.aspartyrental.com/rentals/table-rentals/pencil-kids-table/

633847

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['369998'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"6\u00272\u0027\u0027L X 3\u0027W X 3\u0027H","rental_id":"369998","rental_name":"Rustic 2 Barrel Table Topper (Colors Vary)","images_arr":"{}"};

Rustic 2 Barrel Table Topper (Colors Vary)

from $160.00

Rustic+2+Barrel+Table+Topper+%28Colors+Vary%29

https://www.aspartyrental.com/rentals/table-rentals/rustic-2-barrel-table-topper-colors-vary/

369998

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['805123'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"805123","rental_name":"Wood Top Square Bistro","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022165123\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022805123\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WoodBarTable_87219874.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WoodBarTable_87219874_big.jpg\u0022}}"};

Wood Top Square Bistro

from $50.00

Wood+Top+Square+Bistro

https://www.aspartyrental.com/rentals/table-rentals/wood-top-square-bistro/

805123

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['805105'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"805105","rental_name":"Silver Bistro Square Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022619190\u0022,\u0022rentalimage_createtime\u0022:\u00221645896933\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221645896933\u0022,\u0022rentalimage_itemid\u0022:\u0022805105\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/SilverBarTable_519200972.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/SilverBarTable_519200972_big.jpg\u0022}}"};

Silver Bistro Square Table

from $110.00

Silver+Bistro+Square+Table

https://www.aspartyrental.com/rentals/table-rentals/silver-bistro-square-table-w-2-stools/

805105

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['805175'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"805175","rental_name":"Silver Mat Bar Stools","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022475577\u0022,\u0022rentalimage_createtime\u0022:\u00221626118107\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221626118107\u0022,\u0022rentalimage_itemid\u0022:\u0022805175\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Silvermatbarstool_194245856.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Silvermatbarstool_194245856_big.jpg\u0022}}"};

Silver Mat Bar Stools

from $10.00

Silver+Mat+Bar+Stools

https://www.aspartyrental.com/rentals/table-rentals/silver-mat-bar-stools/

805175

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['805177'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"805177","rental_name":"Tan Mat Bar Stools","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022165149\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022805177\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tanmatbarstool_351433659.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Tanmatbarstool_351433659_big.jpg\u0022}}"};

Tan Mat Bar Stools

from $10.00

Tan+Mat+Bar+Stools

https://www.aspartyrental.com/rentals/table-rentals/tan-mat-bar-stools/

805177

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['369996'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"3\u0027L X 2\u00278\u0027\u0027W X 3\u0027H","rental_id":"369996","rental_name":"Square Single Barrel Table Topper (Colors Vary)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002289967\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022369996\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Single-Barrel-Topper-600x509_1677620860.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Single-Barrel-Topper-600x509_1677620860_big.png\u0022}}"};

Square Single Barrel Table Topper (Colors Vary)

from $35.00

Square+Single+Barrel+Table+Topper+%28Colors+Vary%29

https://www.aspartyrental.com/rentals/table-rentals/square-single-barrel-table-topper-colors-vary/

369996

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

Table Setup

from $5.00

Table+Setup

https://www.aspartyrental.com/rentals/table-rentals/table-setup/

396133

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['524065'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"524065","rental_name":"Table Teardown","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145509\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022524065\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760624699.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Labor (1)_1760624699_big.png\u0022}}"};

Table Teardown

from $5.00

Table+Teardown

https://www.aspartyrental.com/rentals/table-rentals/table-teardown/

524065

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

A & S Party Rental can take care of your event rentals needs with our  Table Rentals (including linens.), Tent Rentals & Chair Rentals.  Indeed, we offer tables in many shapes and sizes. We offer round tables and rectangular tables. Furthermore we offer bistro table rentals (with matching spandex linens) and other bar table rentals. Looking for kids table rental and chairs to rent, we have those too!

If you are planning a wedding or rustic event we also offer farmhouse table rentals with matching cross back chairs. We also provide rental linens for all size tables.

Outdoor events are wonderful in the warm seasons, especially after the cold Winters we experience in Ohio! If you want to hold a company picnic or wedding outside, you’ll need a place for people to sit and eat. Better yet, some shade to keep your guests out of the hot sun with our tent rentals. Looking for table and chair rentals? Our standard chairs and tables are white resin, which gives them a very clean look. These are the most popular item rented for parties in Dayton  A & S Party Rental would love a chance to provide you with tents, folding tables, and folding chair rentals for your next event! 

Check out our YouTube Channel, Facebook , Pinterest & TikTok

Want to know what our customers think of us and our table rentals? Check out our reviews here.

Google Reviews  or Facebook Reviews