items
Set Event Date

Event Furniture for Rent

56767

Event furniture rentals in Dayton, Ohio — love seats, throne chairs, outdoor sets, bars, podiums, ideal for company picnics and celebrations

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

Event Furniture Rentals in Dayton, Ohio

Create stylish, comfortable, and memorable seating areas at your next event with A&S Party Rental’s event furniture rentals in Dayton! Perfect for company picnics, weddings, birthday parties, school events, and family gatherings, our furniture makes every event look and feel amazing.

Choose from love seats, throne chairs, outdoor furniture sets, bars, and podiums to design the perfect setup. Whether you’re hosting a relaxed outdoor picnic, an elegant wedding, or a lively company celebration, our furniture adds comfort, style, and a touch of sophistication.

Make your space inviting, your guests happy, and your event unforgettable. Contact A&S Party Rental today to reserve your event furniture and transform your Dayton event!

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['2463311'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2463311","rental_name":"12 \u0027 Ladder FRAME TENT INSTALLS","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145507\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222463311\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/12ladder_1760624661.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/12ladder_1760624661_big.jpg\u0022}}"};

12 ‘ Ladder FRAME TENT INSTALLS

from $100.00

12+%27+Ladder+FRAME+TENT+INSTALLS

https://www.aspartyrental.com/rentals/event-furniture-rentals/12-ladder-frame-tent-installs/

2463311

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['2463307'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2463307","rental_name":"18 + LADDER HP POLE TENT INSTALLS","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145513\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222463307\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/18ladder_1760624816.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/18ladder_1760624816_big.jpg\u0022}}"};

18 + LADDER HP POLE TENT INSTALLS

from $150.00

18+%2B+LADDER+HP+POLE+TENT+INSTALLS

https://www.aspartyrental.com/rentals/event-furniture-rentals/18-ladder-hp-pole-tent-installs/

2463307

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['2463191'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2463191","rental_name":"360 Bar Back Piece","images_arr":"{}"};

360 Bar Back Piece

from $400.00

360+Bar+Back+Piece

https://www.aspartyrental.com/rentals/event-furniture-rentals/360-bar-back-piece/

2463191

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['2463195'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2463195","rental_name":"360 Bar Flat Section","images_arr":"{}"};

360 Bar Flat Section

from $500.00

360+Bar+Flat+Section

https://www.aspartyrental.com/rentals/event-furniture-rentals/360-bar-flat-section/

2463195

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['2463193'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2463193","rental_name":"360 Bar Round Bar Section","images_arr":"{}"};

360 Bar Round Bar Section

from $500.00

360+Bar+Round+Bar+Section

https://www.aspartyrental.com/rentals/event-furniture-rentals/360-bar-round-bar-section/

2463193

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['2463189'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2463189","rental_name":"360 LED Customize Bar \u0026 Bar Back 5 Piece","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221601399\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222463189\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/CustomLED360Bar\u0026BarBack_1725026820.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/CustomLED360Bar\u0026BarBack_1725026820_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221601401\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222463189\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/customwhite360bar_1725026820.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/customwhite360bar_1725026820_big.jpeg\u0022}}"};

360 LED Customize Bar & Bar Back 5 Piece

from $2,400.00

360+LED+Customize+Bar+%26+Bar+Back+5+Piece

https://www.aspartyrental.com/rentals/event-furniture-rentals/360-led-customize-bar-bar-back-5-piece/

2463189

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['2463315'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2463315","rental_name":"5\u0027- 8\u0027 Ladder SIDE POLE DRAPE INSTALL","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222145531\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222463315\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5ladder_1760625339.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5ladder_1760625339_big.jpg\u0022}}"};

5′- 8′ Ladder SIDE POLE DRAPE INSTALL

from $0.00

5%27-+8%27+Ladder+SIDE+POLE+DRAPE+INSTALL

https://www.aspartyrental.com/rentals/event-furniture-rentals/5-8-ladder-side-pole-drape-install/

2463315

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['2697981'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697981","rental_name":"7-12 Feet Tall Curved Chandelier Holder (does not include Ch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809899\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697981\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7-12 Feet Tall Curved Chandelier_1741034826.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7-12 Feet Tall Curved Chandelier_1741034826_big.jpg\u0022}}"};

7-12 Feet Tall Curved Chandelier Holder (does not include Ch

from $100.00

7-12+Feet+Tall+Curved+Chandelier+Holder+%28does+not+include+Ch

https://www.aspartyrental.com/rentals/decor-rentals/7-12-feet-tall-curved-chandelier-holder-does-not-include-ch/

2697981

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['2443511'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2443511","rental_name":"Acrylic Clear Podium - Del ONLY","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221833925\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222443511\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Acrylic-Podium-Stand_1742241513.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Acrylic-Podium-Stand_1742241513_big.jpg\u0022}}"};

Acrylic Clear Podium – Del ONLY

from $125.00

Acrylic+Clear+Podium+-+Del+ONLY

https://www.aspartyrental.com/rentals/event-furniture-rentals/acrylic-clear-podium-delivery-only/

2443511

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['884451'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"19\u0027\u0027 deep 43\u0027\u0027 tall and 48\u0027\u0027 wide","rental_id":"884451","rental_name":"Black Bar 4\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638381\u0022,\u0022rentalimage_createtime\u0022:\u00221647107838\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647107838\u0022,\u0022rentalimage_itemid\u0022:\u0022884451\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Bar_219272889.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Bar_219272889_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022638383\u0022,\u0022rentalimage_createtime\u0022:\u00221647107838\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647107838\u0022,\u0022rentalimage_itemid\u0022:\u0022884451\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Bar 2_236781750.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Bar 2_236781750_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022638385\u0022,\u0022rentalimage_createtime\u0022:\u00221647107838\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647107838\u0022,\u0022rentalimage_itemid\u0022:\u0022884451\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Bar 3_350489287.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Portable Bar 3_350489287_big.png\u0022}}"};

Black Bar 4′

from $55.00

Black+Bar+4%27

https://www.aspartyrental.com/rentals/event-furniture-rentals/black-bar-4/

884451

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['3064497'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3064497","rental_name":"Black Metal Podium","images_arr":"{}"};

Black Metal Podium

from $75.00

Black+Metal+Podium

https://www.aspartyrental.com/rentals/trade-show-expo/black-metal-podium/

3064497

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['2697975'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697975","rental_name":"Champagne Velvet Curved Sofa","images_arr":"{}"};

Champagne Velvet Curved Sofa

from $400.00

Champagne+Velvet+Curved+Sofa

https://www.aspartyrental.com/rentals/event-furniture-rentals/champagne-velvet-curved-sofa/

2697975

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['2697977'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697977","rental_name":"Champagne Velvet Ottaman","images_arr":"{}"};

Champagne Velvet Ottaman

from $175.00

Champagne+Velvet+Ottaman

https://www.aspartyrental.com/rentals/event-furniture-rentals/champagne-velvet-ottaman/

2697977

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['2201859'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2201859","rental_name":"Chandelier Empire Swag Crystal 14\u0027\u0027x26\u0027\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221462767\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222201859\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download_1714057021.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download_1714057021_big.png\u0022}}"};

Chandelier Empire Swag Crystal 14″x26″

from $125.00

Chandelier+Empire+Swag+Crystal+14%22×26%22

https://www.aspartyrental.com/rentals/decor-rentals/chandelier-empire-swag-crystal-14×26/

2201859

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['2201879'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2201879","rental_name":"Chandelier Empire Swag Crystal 24\u0027\u0027x36\u0027\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222139103\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222201879\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/empireswag_1760034671.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/empireswag_1760034671_big.jpg\u0022}}"};

Chandelier Empire Swag Crystal 24″x36″

from $175.00

Chandelier+Empire+Swag+Crystal+24%22×36%22

https://www.aspartyrental.com/rentals/event-furniture-rentals/chandelier-empire-swag-crystal-24×36/

2201879

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['2029629'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2029629","rental_name":"Conversation Outdoor Lounge Set","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221245915\u0022,\u0022rentalimage_createtime\u0022:\u00221701729064\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221701729064\u0022,\u0022rentalimage_itemid\u0022:\u00222029629\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Kentwell_1694118617.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Kentwell_1694118617_big.png\u0022}}"};

Conversation Outdoor Lounge Set

from $600.00

Conversation+Outdoor+Lounge+Set

https://www.aspartyrental.com/rentals/event-furniture-rentals/kentwell-lounge-set/

2029629

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['2697963'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697963","rental_name":"Curved Glamour Bar (Arriving Soon)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809929\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697963\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/black bar_1741035378.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/black bar_1741035378_big.png\u0022}}"};

Curved Glamour Bar (Arriving Soon)

from $400.00

Curved+Glamour+Bar+%28Arriving+Soon%29

https://www.aspartyrental.com/rentals/event-furniture-rentals/curved-glamour-bar/

2697963

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['2526911'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2526911","rental_name":"Fire Pit Lounge Set","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222146385\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222526911\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/unnamed (1) (1)_1760709066.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/unnamed (1) (1)_1760709066_big.jpg\u0022}}"};

Fire Pit Lounge Set

from $375.00

Fire+Pit+Lounge+Set

https://www.aspartyrental.com/rentals/event-furniture-rentals/fire-pit-lounge-set/

2526911

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['2526915'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2526915","rental_name":"Fire Pit Propane Not Included","images_arr":"{}"};

Fire Pit Propane Not Included

from $175.00

Fire+Pit+Propane+Not+Included

https://www.aspartyrental.com/rentals/event-furniture-rentals/fire-pit-propane-not-included/

2526915

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['2211435'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2211435","rental_name":"Flower Wall 8x8 Pampas","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221356735\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211435\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pampaswall_1709241578.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Pampaswall_1709241578_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221357163\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211435\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pampas_7_1709241580.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/pampas_7_1709241580_big.png\u0022}}"};

Flower Wall 8×8 Pampas

from $1,200.00

Flower+Wall+8×8+Pampas

https://www.aspartyrental.com/rentals/decor-rentals/flower-wall-8×8-pampas/

2211435

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['2211427'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2211427","rental_name":"Flower Wall 8x8 Yaya","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221356731\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211427\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yayawall_1709241628.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yayawall_1709241628_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221357165\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222211427\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yaya_6_1709241630.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/yaya_6_1709241630_big.png\u0022}}"};

Flower Wall 8×8 Yaya

from $1,200.00

Flower+Wall+8×8+Yaya

https://www.aspartyrental.com/rentals/decor-rentals/flower-wall-8×8-yaya/

2211427

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['3064533'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3064533","rental_name":"Grey Metal Podium","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222152427\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223064533\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/51vajbkU04L._AC_SY300_SX300_QL70_FMwebp__1761165529.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/51vajbkU04L._AC_SY300_SX300_QL70_FMwebp__1761165529_big.png\u0022}}"};

Grey Metal Podium

from $75.00

Grey+Metal+Podium

https://www.aspartyrental.com/rentals/trade-show-expo/grey-metal-podium/

3064533

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['1723357'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1723357","rental_name":"Hexagon Arch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022869291\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221723357\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/hex_1671650021.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/hex_1671650021_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022869293\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221723357\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9777-01-04_1_675x675_crop_center_1671650021.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9777-01-04_1_675x675_crop_center_1671650021_big.png\u0022}}"};

Hexagon Arch

from $220.00

Hexagon+Arch

https://www.aspartyrental.com/rentals/event-furniture-rentals/hexagon-arch/

1723357

14297

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['1378283'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1378283","rental_name":"Large Black 2 Tier Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820771\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221378283\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/black-creative-co-op-utility-carts-da2839-64_1000__77688_1666798855.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/black-creative-co-op-utility-carts-da2839-64_1000__77688_1666798855_big.jpg\u0022}}"};

Large Black 2 Tier Bar

from $100.00

Large+Black+2+Tier+Bar

https://www.aspartyrental.com/rentals/event-furniture-rentals/large-black-2-tier-bar/

1378283

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['438703'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"438703","rental_name":"LED Glow Coffee Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022612139\u0022,\u0022rentalimage_createtime\u0022:\u00221645472862\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221645472862\u0022,\u0022rentalimage_itemid\u0022:\u0022438703\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/15493505_10154938302304203_272111771911716864_n_792521.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/15493505_10154938302304203_272111771911716864_n_792521_big.jpg\u0022}}"};

LED Glow Coffee Table

from $85.00

LED+Glow+Coffee+Table

https://www.aspartyrental.com/rentals/event-furniture-rentals/led-glow-coffee-table/

438703

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['438701'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"438701","rental_name":"LED Glow Lounge Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022612143\u0022,\u0022rentalimage_createtime\u0022:\u00221645472880\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221645472880\u0022,\u0022rentalimage_itemid\u0022:\u0022438701\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/15493505_10154938302304203_272111771911716864_n_871846.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/15493505_10154938302304203_272111771911716864_n_871846_big.jpg\u0022}}"};

LED Glow Lounge Chair

from $85.00

LED+Glow+Lounge+Chair

https://www.aspartyrental.com/rentals/event-furniture-rentals/led-glow-lounge-chair/

438701

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['439023'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"439023","rental_name":"Portable Bar w\/24\u0027 Ice bin","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022819571\u0022,\u0022rentalimage_createtime\u0022:\u00221666709672\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221666709672\u0022,\u0022rentalimage_itemid\u0022:\u0022439023\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/portable bar_800353185.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/portable bar_800353185_big.jpg\u0022}}"};

Portable Bar w/24′ Ice bin

from $250.00

Portable+Bar+w%2F24%27+Ice+bin

https://www.aspartyrental.com/rentals/event-furniture-rentals/portable-bar-w-24-ice-bin/

439023

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['2697961'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697961","rental_name":"Portable Cooling Fan","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697961\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/portablecooler_1751997760.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/portablecooler_1751997760_big.png\u0022}}"};

Portable Cooling Fan

from $250.00

Portable+Cooling+Fan

https://www.aspartyrental.com/rentals/event-furniture-rentals/portable-cooling-fan/

2697961

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['2366608'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2366608","rental_name":"Red Loveseat","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221515528\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222366608\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Red Love Seat_1717778057.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Red Love Seat_1717778057_big.jpg\u0022}}"};

Red Loveseat

from $300.00

Red+Loveseat

https://www.aspartyrental.com/rentals/event-furniture-rentals/red-loveseat/

2366608

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['2697967'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697967","rental_name":"Rustic Folding 4\u0027 Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222096983\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697967\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rusticbar1_1757105926.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rusticbar1_1757105926_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222096985\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697967\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rusticbar2_1757105927.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rusticbar2_1757105927_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222096987\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697967\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rusticbar_1757105927.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rusticbar_1757105927_big.jpg\u0022}}"};

Rustic Folding 4′ Bar

from $200.00

Rustic+Folding+4%27+Bar

https://www.aspartyrental.com/rentals/event-furniture-rentals/rustic-folding-4-bar/

2697967

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/rentals/event-furniture-rentals/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['1017591'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1017591","rental_name":"Tall Standing Easels","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821149\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221017591\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/eas6016056.rw_zoom_1666807850.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/eas6016056.rw_zoom_1666807850_big.jpg\u0022}}"};

Tall Standing Easels

from $20.00

Tall+Standing+Easels

https://www.aspartyrental.com/rentals/event-furniture-rentals/standing-easels/

1017591

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['1721233'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1721233","rental_name":"Throne Chair Gold Trim","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221226477\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221721233\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/goldchair_1699647233.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/goldchair_1699647233_big.jpg\u0022}}"};

Throne Chair Gold Trim

from $200.00

Throne+Chair+Gold+Trim

https://www.aspartyrental.com/rentals/event-furniture-rentals/throne-chair-gold-trim/

1721233

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['1721231'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1721231","rental_name":"Throne Chair Silver Trim","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221226479\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221721231\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/silver_1699647514.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/silver_1699647514_big.png\u0022}}"};

Throne Chair Silver Trim

from $200.00

Throne+Chair+Silver+Trim

https://www.aspartyrental.com/rentals/event-furniture-rentals/throne-chair-silver-trim/

1721231

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['1712055'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1712055","rental_name":"Vintage LoveSeat Blush","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022858769\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221712055\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/A\u0026S Vintage Photo Area_1670514610.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/A\u0026S Vintage Photo Area_1670514610_big.jpg\u0022}}"};

Vintage LoveSeat Blush

from $200.00

Vintage+LoveSeat+Blush

https://www.aspartyrental.com/rentals/event-furniture-rentals/vintage-loveseat-blush/

1712055

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['1712051'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1712051","rental_name":"Vintage LoveSeat Ivory","images_arr":"{}"};

Vintage LoveSeat Ivory

from $200.00

Vintage+LoveSeat+Ivory

https://www.aspartyrental.com/rentals/event-furniture-rentals/vintage-loveseat-ivory/

1712051

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['2800843'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2800843","rental_name":"Vintage Mirror","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221903887\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222800843\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/vintagemirror_1745522756.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/vintagemirror_1745522756_big.jpg\u0022}}"};

Vintage Mirror

from $25.00

Vintage+Mirror

https://www.aspartyrental.com/rentals/event-furniture-rentals/vintage-mirror-2/

2800843

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['2241671'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"7\u00278\u0027\u0027WideX2\u00274\u0027\u0027 Long","rental_id":"2241671","rental_name":"White Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221390979\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241671\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0313_1710177259.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_0313_1710177259_big.jpg\u0022}}"};

White Bar

from $800.00

White+Bar

https://www.aspartyrental.com/rentals/event-furniture-rentals/white-bar/

2241671

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['2697965'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697965","rental_name":"White Resin Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222137935\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697965\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aiwhiteresin_1759931836.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/aiwhiteresin_1759931836_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222137937\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697965\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/finalwhiteresinbar (1)_1759931837.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/finalwhiteresinbar (1)_1759931837_big.png\u0022}}"};

White Resin Bar

from $300.00

White+Resin+Bar

https://www.aspartyrental.com/rentals/event-furniture-rentals/white-resin-bar/

2697965

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['767687'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"767687","rental_name":"6\u0027 Avenue Bar White with Gold Trim","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022741927\u0022,\u0022rentalimage_createtime\u0022:\u00221656021957\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221656021957\u0022,\u0022rentalimage_itemid\u0022:\u0022767687\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/avenue_6_G_white_large_146538010.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/avenue_6_G_white_large_146538010_big.jpg\u0022}}"};

6′ Avenue Bar White with Gold Trim

from $325.00

6%27+Avenue+Bar+White+with+Gold+Trim

https://www.aspartyrental.com/rentals/event-furniture-rentals/6-avenue-bar/

767687

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['767689'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"72 x 18 x 84","rental_id":"767689","rental_name":"Avenue Bar Back 4 Shelves","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638379\u0022,\u0022rentalimage_createtime\u0022:\u00221647107754\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647107754\u0022,\u0022rentalimage_itemid\u0022:\u0022767689\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Essex_bar_back_G_white_8b7f6af2-d25d-44f3-b002-ab69f3c21ca8_large_692996680.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Essex_bar_back_G_white_8b7f6af2-d25d-44f3-b002-ab69f3c21ca8_large_692996680_big.jpg\u0022}}"};

Avenue Bar Back 4 Shelves

from $330.00

Avenue+Bar+Back+4+Shelves

https://www.aspartyrental.com/rentals/event-furniture-rentals/bar-back-4-shelves/

767689

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['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/rentals/event-furniture-rentals/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['216189'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"216189","rental_name":"Black Bar 6\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022638387\u0022,\u0022rentalimage_createtime\u0022:\u00221647107863\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647107863\u0022,\u0022rentalimage_itemid\u0022:\u0022216189\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bar_portable_folding_marble_date-10-25-10_011_2__1__452319977.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/bar_portable_folding_marble_date-10-25-10_011_2__1__452319977_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022638389\u0022,\u0022rentalimage_createtime\u0022:\u00221647107863\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647107863\u0022,\u0022rentalimage_itemid\u0022:\u0022216189\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Logo_283756513.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Logo_283756513_big.jpg\u0022}}"};

Black Bar 6′

from $0.00

Black+Bar+6%27

https://www.aspartyrental.com/rentals/event-furniture-rentals/black-bar-6/

216189

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['752523'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"6.5 x 2.5","rental_id":"752523","rental_name":"Black Leather Sofa","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022534351\u0022,\u0022rentalimage_createtime\u0022:\u00221636568001\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221636568001\u0022,\u0022rentalimage_itemid\u0022:\u0022752523\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Black Sofa_695421620.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Black Sofa_695421620_big.jpg\u0022}}"};

Black Leather Sofa

from $330.00

Black+Leather+Sofa

https://www.aspartyrental.com/rentals/event-furniture-rentals/black-leather-sofa/

752523

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['752525'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"752525","rental_name":"Black Ottoman","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820775\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022752525\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/image57170_1666798905.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/image57170_1666798905_big.jpg\u0022}}"};

Black Ottoman

from $110.00

Black+Ottoman

https://www.aspartyrental.com/rentals/event-furniture-rentals/black-ottoman/

752525

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['449335'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"7.5\u0027L X 2\u00278.5\u0027\u0027W X 3\u00274\u0027\u0027T","rental_id":"449335","rental_name":"Rustic Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820777\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022449335\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rustic_bar_hire_melbourne_1666798955.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/rustic_bar_hire_melbourne_1666798955_big.jpg\u0022}}"};

Rustic Bar

from $250.00

Rustic+Bar

https://www.aspartyrental.com/rentals/event-furniture-rentals/rustic-bar/

449335

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['642563'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"642563","rental_name":"Outdoor Rattan End Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820787\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022642563\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/61ATpBywsFL._AC__1666799169.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/61ATpBywsFL._AC__1666799169_big.jpg\u0022}}"};

Outdoor Rattan End Table

from $55.00

Outdoor+Rattan+End+Table

https://www.aspartyrental.com/rentals/event-furniture-rentals/outdoor-rattan-end-table/

642563

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['642557'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"642557","rental_name":"Outdoor Rattan Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820785\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022642557\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/round-back-rattan-patio-chair_1666799106.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/round-back-rattan-patio-chair_1666799106_big.jpg\u0022}}"};

Outdoor Rattan Chair

from $85.00

Outdoor+Rattan+Chair

https://www.aspartyrental.com/rentals/event-furniture-rentals/outdoor-rattan-chair/

642557

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['642559'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"642559","rental_name":"Outdoor Rattan Love Seat","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022544815\u0022,\u0022rentalimage_createtime\u0022:\u00221638559729\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221638559729\u0022,\u0022rentalimage_itemid\u0022:\u0022642559\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/chocolate-brown-faux-rattan-loveseat-with-all-weather-beige-cushions_953654278.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/chocolate-brown-faux-rattan-loveseat-with-all-weather-beige-cushions_953654278_big.jpg\u0022}}"};

Outdoor Rattan Love Seat

from $165.00

Outdoor+Rattan+Love+Seat

https://www.aspartyrental.com/rentals/event-furniture-rentals/outdoor-rattan-love-seat/

642559

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['642561'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"642561","rental_name":"Outdoor Rattan Sofa","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022145243\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022642561\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/chocolate-brown-faux-rattan-sofa-with-all-weather-beige-cushions_980820084.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/chocolate-brown-faux-rattan-sofa-with-all-weather-beige-cushions_980820084_big.jpg\u0022}}"};

Outdoor Rattan Sofa

from $250.00

Outdoor+Rattan+Sofa

https://www.aspartyrental.com/rentals/event-furniture-rentals/outdoor-rattan-sofa/

642561

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['642551'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"642551","rental_name":"Right end sofa","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022145235\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022642551\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/white leather end chair rental_696093816.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/white leather end chair rental_696093816_big.jpg\u0022}}"};

Right end sofa

from $110.00

Right+end+sofa

https://www.aspartyrental.com/rentals/event-furniture-rentals/right-end-sofa/

642551

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['642553'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"642553","rental_name":"Middle Sofa Seat","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022145237\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022642553\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White leather middle chair rental_847750343.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White leather middle chair rental_847750343_big.jpg\u0022}}"};

Middle Sofa Seat

from $110.00

Middle+Sofa+Seat

https://www.aspartyrental.com/rentals/event-furniture-rentals/middle-sofa-seat/

642553

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['642549'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"642549","rental_name":"Left End Sofa","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022145233\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022642549\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White leather corner chair rental_227489507.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/White leather corner chair rental_227489507_big.jpg\u0022}}"};

Left End Sofa

from $110.00

Left+End+Sofa

https://www.aspartyrental.com/rentals/event-furniture-rentals/left-end-sofa/

642549

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['830555'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"830555","rental_name":"Throne Chair White SANTA ONLY","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022815759\u0022,\u0022rentalimage_createtime\u0022:\u00221666111397\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221666111397\u0022,\u0022rentalimage_itemid\u0022:\u0022830555\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/whitethrown_1699647540.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/whitethrown_1699647540_big.png\u0022}}"};

Throne Chair White SANTA ONLY

from $200.00

Throne+Chair+White+SANTA+ONLY

https://www.aspartyrental.com/rentals/event-furniture-rentals/throne-chair-white/

830555

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['670473'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"670473","rental_name":"White Tufted Chair","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022553483\u0022,\u0022rentalimage_createtime\u0022:\u00221640009578\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221640009578\u0022,\u0022rentalimage_itemid\u0022:\u0022670473\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WhiteSmallChair_552733331.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/WhiteSmallChair_552733331_big.jpg\u0022}}"};

White Tufted Chair

from $225.00

White+Tufted+Chair

https://www.aspartyrental.com/rentals/event-furniture-rentals/white-tufted-chair/

670473

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['670471'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"670471","rental_name":"Throne Loveseat\/Santa Only","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022149501\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022670471\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/thronekingdom6.11.2008304_1_720x_1699647891.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/thronekingdom6.11.2008304_1_720x_1699647891_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221226481\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022670471\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/thronekingdom6.11.2008306_720x_1699647891.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/thronekingdom6.11.2008306_720x_1699647891_big.png\u0022}}"};

Throne Loveseat/Santa Only

from $440.00

Throne+Loveseat%2FSanta+Only

https://www.aspartyrental.com/rentals/event-furniture-rentals/throne-loveseat/

670471

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['369992'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"36\u0027\u0027H x 23\u0027\u0027W","rental_id":"369992","rental_name":"Barrel Rental (Colors Vary)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820815\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022369992\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Oak-wine-barrel-at-toneleria-nacional-chile_1666799940.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Oak-wine-barrel-at-toneleria-nacional-chile_1666799940_big.jpg\u0022}}"};

Barrel Rental (Colors Vary)

from $50.00

Barrel+Rental+%28Colors+Vary%29

https://www.aspartyrental.com/rentals/event-furniture-rentals/barrel-rental-colors-vary/

369992

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

Event Furniture Rentals in Dayton-

At A&S Party Rental, we offer the largest selection of event furniture rentals, bar rentals, and supplies in the Dayton area. Whether you need a bar for a special event or the accessories to make your fun night even more special, check out what A&S party rental has to offer.

 

Google Reviews  or Facebook Reviews.

Looking for event furniture rentals to wow your guest? We have a wide variety of event furniture rentals for all your events rental needs. LED event furniture rentals is a cool way to light up your event, popular with universities! Throne chairs coming in white, gold and silver will elevate your birthday, wedding or baby shower. Check our our lounge sets, perfect sitting around our fire pits or even our black leather event furniture rentals. 

We offer standard folding bars, rustic bars and the high class Avenue Bar. Additionally we offer wine glass rentals, irish coffee cups and champagne glass rentals.

These are a great for any corporate function, fundraising event, school event, family reunions or even after prom. For additional ideas to amp up your event, visit our event planning page.

Other Party Rental Items

Furthermore, A & S also has all your party tent rentals. Bars are needed under your wedding tents. Moreover, we have dance floors, LED dance floors and tent lighting that can make any event spectacular!

Need other party items?   We offer rental packages on many other items like tables, chairs, decorations, concessions and much more.

Check us out on YouTube or visit our Facebook page for additional information. Want to talk to one of our planning specialists, give us a call in  Dayton at 937-885-5454.

Check out our YouTube Channel, Facebook , Pinterest & TikTok

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