Light Up Your Celebration with Our LED Furniture Rentals in Northbrook, IL

Transform your event into a luminous spectacle with our exclusive LED furniture rentals in Northbrook, IL. Perfect for any occasion, our LED furniture brings an extraordinary glow that enhances the ambiance, making every moment unforgettable. From intimate gatherings to grand celebrations, our diverse range of LED furniture caters to all event types, setting the perfect mood with its captivating light and design.

items
Set Event Date

LED Furniture & Decor for Rent

72223

Check out the Midwest's largest selection of LED furniture and decor including many types of seating and tables, as well as 5-foot curved bars, interactive fun (Spinny Top Chairs, Moon Loungers, Seesaws and more) and decor ranging from lamps (floor and tabletop) to 8-foot Grand Entry Pillars. Add a splash of color with a few components, or the whole enchilada with a Glow Lounge. You can't go wrong either way!

Professional delivery to Northbrook, IL, Evanston, IL, Waukegan, IL and surrounding areas. Please submit a quote or contact us to be sure we service your area.
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['987569'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"3 Benches, 1 Cocktail Table","rental_id":"987569","rental_name":"4-Piece Cocktail Area","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310559\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022987569\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7325_1706597384.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7325_1706597384_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310561\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022987569\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7328_1706597385.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7328_1706597385_big.jpg\u0022}}"};

4-Piece Cocktail Area

from $595.00

4-Piece+Cocktail+Area

https://wowfactorchicago.com/rentals/led-furniture/curved-bench-cocktail-area/

987569

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['963101'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"963101","rental_name":"5-Foot Curved Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022910999\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963101\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED bar-Branded_1675127885.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED bar-Branded_1675127885_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022409469\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963101\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Curved Bar_479635115.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Curved Bar_479635115_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222041807\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963101\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Curved Bars - CDW_1753813290.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Curved Bars - CDW_1753813290_big.jpg\u0022}}"};

5-Foot Curved Bar

from $395.00

5-Foot+Curved+Bar

https://wowfactorchicago.com/rentals/led-furniture/5-foot-curved-bar/

963101

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['2164463'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164463","rental_name":"5-Piece Cocktail Area","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221305783\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164463\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Half Circle Tables with curved benches_1706248912.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Half Circle Tables with curved benches_1706248912_big.jpg\u0022}}"};

5-Piece Cocktail Area

from $775.00

5-Piece+Cocktail+Area

https://wowfactorchicago.com/rentals/led-furniture/5-piece-cocktail-area/

2164463

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['2392389'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2392389","rental_name":"5-Piece Heart Set","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221540881\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222392389\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/5 Piece Heart Set_1719807404.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/5 Piece Heart Set_1719807404_big.jpg\u0022}}"};

5-Piece Heart Set

from $450.00

5-Piece+Heart+Set

https://wowfactorchicago.com/rentals/led-furniture/5-piece-heart-set/

2392389

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['980287'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"36\u201d x 18\u201d x 22\u201d","rental_id":"980287","rental_name":"Curved Bench - Single","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310577\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022980287\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Curved Benches-Nice_1706598250.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Curved Benches-Nice_1706598250_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310579\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022980287\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6174_1706598250.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6174_1706598250_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221310581\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022980287\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7325_1706598251.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7325_1706598251_big.jpg\u0022}}"};

Curved Bench – Single

from $195.00

Curved+Bench+-+Single

https://wowfactorchicago.com/rentals/led-furniture/curved-bench/

980287

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['963099'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"16\u201d x 16\u201d x 16\u201d","rental_id":"963099","rental_name":"D\u00e9cor\/Seating Cube w\/Artwork.","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189647\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963099\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/9TDBSXsO_676305932.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/9TDBSXsO_676305932_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022738693\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963099\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Decor-LED Cubes B-H_1655740000.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Decor-LED Cubes B-H_1655740000_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022738695\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963099\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Dice_1655740001.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Dice_1655740001_big.jpg\u0022}}"};

Décor/Seating Cube w/Artwork.

from $170.00

D%C3%A9cor%2FSeating+Cube+w%2FArtwork.

https://wowfactorchicago.com/rentals/led-furniture/decor-seating-cube-w-artwork/

963099

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['963097'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"16\u201d x 16\u201d x 16\u201d","rental_id":"963097","rental_name":"D\u00e9cor\/Seating Cube-Large","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189645\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963097\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/cubes_802184533.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/cubes_802184533_big.jpeg\u0022}}"};

Décor/Seating Cube-Large

from $70.00

D%C3%A9cor%2FSeating+Cube-Large

https://wowfactorchicago.com/rentals/led-furniture/decor-seating-cube/

963097

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['2167879'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2167879","rental_name":"Grand Entry Pillars","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310271\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222167879\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Tubes-Good (1)_1706593861.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Tubes-Good (1)_1706593861_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221540859\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222167879\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Pillars-Funky_1719803727.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Pillars-Funky_1719803727_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221540861\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222167879\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Pillars-Green_1719803728.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Pillars-Green_1719803728_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221540863\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222167879\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Pillars-Blue_1719803728.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Pillars-Blue_1719803728_big.jpg\u0022}}"};

Grand Entry Pillars

from $275.00

Grand+Entry+Pillars

https://wowfactorchicago.com/rentals/led-furniture/led-pillars/

2167879

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['963091'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"20\u2019\u201d x 20\u201d x 48\u201d","rental_id":"963091","rental_name":"Hi Boy Cocktail Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022738699\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963091\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6331 (1)_1655740405.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6331 (1)_1655740405_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022738701\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963091\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_8986_1655740405.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_8986_1655740405_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022738703\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963091\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Christmas LED Furniture_1655740406.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Christmas LED Furniture_1655740406_big.jpg\u0022}}"};

Hi Boy Cocktail Table

from $175.00

Hi+Boy+Cocktail+Table

https://wowfactorchicago.com/rentals/led-furniture/hi-boy-cocktail-table/

963091

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['2168169'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2168169","rental_name":"LED 5-Piece Lounge","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310539\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168169\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_0790_1706596153.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_0790_1706596153_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310541\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168169\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_0785_1706596153.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_0785_1706596153_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221310543\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168169\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7883_1706596154.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7883_1706596154_big.jpg\u0022}}"};

LED 5-Piece Lounge

from $1,495.00

LED+5-Piece+Lounge

https://wowfactorchicago.com/rentals/led-furniture/led-5-piece-lounge/

2168169

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['1341749'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1341749","rental_name":"LED Arm Chairs","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310585\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221341749\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6181_1706598515.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6181_1706598515_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310587\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221341749\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6170_1706598516.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6170_1706598516_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022741859\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221341749\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Valentines 2-pic_1656018989.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Valentines 2-pic_1656018989_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u0022984019\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221341749\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Arm Chair_1679599814.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Arm Chair_1679599814_big.png\u0022}}"};

LED Arm Chairs

from $250.00

LED+Arm+Chairs

https://wowfactorchicago.com/rentals/led-furniture/u-shaped-chairs/

1341749

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['2168179'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2168179","rental_name":"LED Bubble Tables","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310571\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168179\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Bubble Table with Cubes_1706598022.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Bubble Table with Cubes_1706598022_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310573\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168179\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Bubble Table-Pink_1706598022.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Bubble Table-Pink_1706598022_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221310575\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168179\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6174_1706598023.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6174_1706598023_big.jpg\u0022}}"};

LED Bubble Tables

from $125.00

LED+Bubble+Tables

https://wowfactorchicago.com/rentals/led-furniture/led-bubble-tables/

2168179

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['2167887'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2167887","rental_name":"LED Centerpiece Lamp","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221562959\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222167887\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Centerpiece Lamps_1721681031.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Centerpiece Lamps_1721681031_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310267\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222167887\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Tample Lamp-Blue_1706593768.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Tample Lamp-Blue_1706593768_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221310269\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222167887\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Table Lamp-Pink_1706593768.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Table Lamp-Pink_1706593768_big.jpg\u0022}}"};

LED Centerpiece Lamp

from $35.00

LED+Centerpiece+Lamp

https://wowfactorchicago.com/rentals/led-furniture/led-table-lamp/

2167887

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['2662819'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2662819","rental_name":"LED Dance Floor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221768975\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222662819\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Dance Floor_1738691730.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Dance Floor_1738691730_big.jpg\u0022}}"};

LED Dance Floor

from $59.00

LED+Dance+Floor

https://wowfactorchicago.com/rentals/glow-lounge/led-dance-floor/

2662819

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['2145841'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2145841","rental_name":"LED Floor Lamps","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221285815\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222145841\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Floor Lamps_1704986988.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Floor Lamps_1704986988_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221540865\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222145841\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Floor Lamps-Rainbow_1719803831.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Floor Lamps-Rainbow_1719803831_big.jpg\u0022}}"};

LED Floor Lamps

from $195.00

LED+Floor+Lamps

https://wowfactorchicago.com/rentals/led-furniture/led-floor-lamps/

2145841

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['2168171'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2168171","rental_name":"LED Full Circle Bar","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310549\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168171\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Curved Bars-Full Circle_1706596694.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Curved Bars-Full Circle_1706596694_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221426487\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168171\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_5633_1711839187.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_5633_1711839187_big.jpg\u0022}}"};

LED Full Circle Bar

from $2,175.00

LED+Full+Circle+Bar

https://wowfactorchicago.com/rentals/led-furniture/led-full-circle-bar/

2168171

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['2164241'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164241","rental_name":"LED Heart Chairs","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221540877\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164241\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Hear Chairs-Side_1719806894.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Hear Chairs-Side_1719806894_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221540879\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164241\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/5 Piece Heart Set_1719806895.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/5 Piece Heart Set_1719806895_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221305381\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164241\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Blue Heart Seat_1706218349.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Blue Heart Seat_1706218349_big.jpg\u0022}}"};

LED Heart Chairs

from $80.00

LED+Heart+Chairs

https://wowfactorchicago.com/rentals/led-furniture/heart-chairs/

2164241

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['2662849'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2662849","rental_name":"LED Light Orb - 12 Inch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221768999\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222662849\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs-2_1738693047.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs-2_1738693047_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221769001\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222662849\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs_1738693047.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs_1738693047_big.jpg\u0022}}"};

LED Light Orb – 12 Inch

from $70.00

LED+Light+Orb+-+12+Inch

https://wowfactorchicago.com/rentals/led-furniture/led-light-orb-12-inch/

2662849

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['2662845'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2662845","rental_name":"LED Light Orb - 16 Inch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221768987\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222662845\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs-2_1738692930.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs-2_1738692930_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221768989\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222662845\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs_1738692930.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs_1738692930_big.jpg\u0022}}"};

LED Light Orb – 16 Inch

from $80.00

LED+Light+Orb+-+16+Inch

https://wowfactorchicago.com/rentals/led-furniture/led-light-orb-16-inches/

2662845

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['2662843'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2662843","rental_name":"LED Light Orb - 20 Inch","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221768983\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222662843\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs-2_1738692799.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs-2_1738692799_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221768985\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222662843\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs_1738692799.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Orbs_1738692799_big.jpg\u0022}}"};

LED Light Orb – 20 Inch

from $90.00

LED+Light+Orb+-+20+Inch

https://wowfactorchicago.com/rentals/led-furniture/led-light-orb-20-inch/

2662843

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['2164465'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164465","rental_name":"LED Moon Bench","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221761109\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164465\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Moon Lounge Chairs_1738170787.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Moon Lounge Chairs_1738170787_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221761111\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164465\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Moon Bench-Blue_1738170788.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Moon Bench-Blue_1738170788_big.jpg\u0022}}"};

LED Moon Bench

from $350.00

LED+Moon+Bench

https://wowfactorchicago.com/rentals/led-furniture/led-moon-bench/

2164465

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['2164317'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164317","rental_name":"LED Rainbow Fusion Bench","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221305433\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164317\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Piano Rainbow Bench-Pic_1706222783.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Piano Rainbow Bench-Pic_1706222783_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221305435\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164317\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Piano Bench_1706222783.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Piano Bench_1706222783_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221305437\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164317\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/0823_1706222783.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/0823_1706222783_big.jpg\u0022}}"};

LED Rainbow Fusion Bench

from $895.00

LED+Rainbow+Fusion+Bench

https://wowfactorchicago.com/rentals/new-for-2025/led-fusion-piano-bench/

2164317

Limited

Dropdown

1

0

item unavailable (change date)

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

window.io_category_data = window.io_category_data || {}; window.io_category_data['1815707'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1815707","rental_name":"LED Rectangular Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022983819\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221815707\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Rectangular Table_1679596276.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Rectangular Table_1679596276_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310545\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221815707\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Rectangular Table-White_1706596298.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Rectangular Table-White_1706596298_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221310563\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221815707\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6192_1706597446.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6192_1706597446_big.jpg\u0022}}"};

LED Rectangular Table

from $225.00

LED+Rectangular+Table

https://wowfactorchicago.com/rentals/led-furniture/led-rectangular-table/

1815707

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['2163799'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2163799","rental_name":"LED Sectional Sofa - 10 Piece","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221571755\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222163799\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2674_1722367053.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2674_1722367053_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221571757\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222163799\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2668_1722367053.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2668_1722367053_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221571759\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222163799\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2677_1722367054.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2677_1722367054_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221571761\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222163799\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2669_1722367055.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_2669_1722367055_big.jpg\u0022}}"};

LED Sectional Sofa – 10 Piece

from $1,895.00

LED+Sectional+Sofa+-+10+Piece

https://wowfactorchicago.com/rentals/led-furniture/led-modular-sofa-4-piece/

2163799

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['2164211'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164211","rental_name":"LED Sectional Sofa - 3 Piece","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221305365\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164211\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Modular sofa 3 pc_1706217365.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Modular sofa 3 pc_1706217365_big.png\u0022}}"};

LED Sectional Sofa – 3 Piece

from $595.00

LED+Sectional+Sofa+-+3+Piece

https://wowfactorchicago.com/rentals/led-furniture/led-modular-sofa-3-piece/

2164211

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['2164307'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164307","rental_name":"LED See Saws","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221305425\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164307\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LEDSeeSaw_1691682871_big_1706222169.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LEDSeeSaw_1691682871_big_1706222169_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310253\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164307\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/See Saw-good_1706588355.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/See Saw-good_1706588355_big.jpg\u0022}}"};

LED See Saws

from $595.00

LED+See+Saws

https://wowfactorchicago.com/rentals/led-furniture/led-see-saw/

2164307

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['2168175'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2168175","rental_name":"LED Serpentine Bench - 6 Piece","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310555\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168175\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6174_1706597149.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6174_1706597149_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310557\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222168175\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7203_1706597150.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_7203_1706597150_big.jpg\u0022}}"};

LED Serpentine Bench – 6 Piece

from $1,075.00

LED+Serpentine+Bench+-+6+Piece

https://wowfactorchicago.com/rentals/led-furniture/led-serpentine-bench-6-piece-2/

2168175

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['2145839'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2145839","rental_name":"LED Spinny Top Chairs","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221540871\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222145839\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Peg Top Chairs-Multicolor_1719806452.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Peg Top Chairs-Multicolor_1719806452_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221682931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222145839\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Spin Top Chairs_1732841231.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Spin Top Chairs_1732841231_big.jpg\u0022}}"};

LED Spinny Top Chairs

from $250.00

LED+Spinny+Top+Chairs

https://wowfactorchicago.com/rentals/led-furniture/peg-top-chairs/

2145839

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['2164237'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164237","rental_name":"LED Star Chairs","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221540873\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164237\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Star Chairs-Side_1719806692.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Star Chairs-Side_1719806692_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221540875\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164237\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Star Chairs-Top_1719806693.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Star Chairs-Top_1719806693_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221305375\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164237\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Star Chairs-Pinik_1706218051.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Star Chairs-Pinik_1706218051_big.jpg\u0022}}"};

LED Star Chairs

from $85.00

LED+Star+Chairs

https://wowfactorchicago.com/rentals/led-furniture/star-chairs/

2164237

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['1796883'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1796883","rental_name":"LED Swings","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221210023\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221796883\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/fullsizeoutput_f5a3_1697743971.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/fullsizeoutput_f5a3_1697743971_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221210025\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221796883\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/fullsizeoutput_f5a4_1697743971.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/fullsizeoutput_f5a4_1697743971_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221210027\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221796883\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/fullsizeoutput_f3d5_1697743972.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/fullsizeoutput_f3d5_1697743972_big.jpeg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221210029\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221796883\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/TbJKu8L8RFeUza2g92oeTA_1697743972.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/TbJKu8L8RFeUza2g92oeTA_1697743972_big.jpg\u0022}}"};

LED Swings

from $550.00

LED+Swings

https://wowfactorchicago.com/rentals/led-furniture/led-swing/

1796883

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['2164461'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2164461","rental_name":"LED Yo-Yo End Tables","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221305777\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164461\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Half Circle table-Yellow_1706248565.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Half Circle table-Yellow_1706248565_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221305779\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164461\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Curved Benches-Nice_1706248565.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Curved Benches-Nice_1706248565_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221305781\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222164461\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Half Circle Tables with curved benches_1706248565.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Half Circle Tables with curved benches_1706248565_big.jpg\u0022}}"};

LED Yo-Yo End Tables

from $150.00

LED+Yo-Yo+End+Tables

https://wowfactorchicago.com/rentals/led-furniture/led-yo-yo-end-tables/

2164461

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['963095'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"48\u201d x 48\u201d x 16\u201d","rental_id":"963095","rental_name":"Rainbow Bench","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189643\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963095\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Rainbow Bench_673878593.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Rainbow Bench_673878593_big.jpg\u0022}}"};

Rainbow Bench

from $595.00

Rainbow+Bench

https://wowfactorchicago.com/rentals/led-furniture/rainbow-bench/

963095

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['963089'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"48\u201d x 18\u201d x 22\u201d","rental_id":"963089","rental_name":"Rectangular Bench","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189639\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963089\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Rectangular Bench_406721799.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED Rectangular Bench_406721799_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022741787\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963089\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/0F1234A4-FD40-49A4-8D2F-371DE4082778_1656017606.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/0F1234A4-FD40-49A4-8D2F-371DE4082778_1656017606_big.jpg\u0022}}"};

Rectangular Bench

from $195.00

Rectangular+Bench

https://wowfactorchicago.com/rentals/led-furniture/rectangular-bench/

963089

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['963085'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"72\u201d x 30\u201d x 36\u201d","rental_id":"963085","rental_name":"Sofa","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189637\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963085\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED sofas_794897756.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/LED sofas_794897756_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022409467\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963085\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Branded LED Furniture_53061749.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Branded LED Furniture_53061749_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022741803\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022963085\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Christmas LED Furniture_1656018044.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Christmas LED Furniture_1656018044_big.jpg\u0022}}"};

Sofa

from $395.00

Sofa

https://wowfactorchicago.com/rentals/led-furniture/sofa/

963085

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['2484499'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2484499","rental_name":"Straight Back LED Chairs","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221619537\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222484499\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Straight Back Chairs_1726853040.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Straight Back Chairs_1726853040_big.jpg\u0022}}"};

Straight Back LED Chairs

from $225.00

Straight+Back+LED+Chairs

https://wowfactorchicago.com/rentals/led-furniture/straight-back-led-chairs/

2484499

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['2113101'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2113101","rental_name":"XL Hi Boy Cocktail Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221310567\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222113101\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6170_1706597568.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6170_1706597568_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221310569\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222113101\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6181_1706597569.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/IMG_6181_1706597569_big.jpg\u0022}}"};

XL Hi Boy Cocktail Table

from $195.00

XL+Hi+Boy+Cocktail+Table

https://wowfactorchicago.com/rentals/led-furniture/xl-hi-boy-cocktail-table/

2113101

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

Our LED Furniture Rental Options

Dive into our vibrant selection of LED furniture, designed to illuminate and enchant. Each piece is crafted to not only light up your space but also to add a touch of modern elegance to your event.

4-Piece Cocktail Area”

Our 4-Piece Cocktail Area setup is the cornerstone of any lively event. Starting from $595, this package includes LED-lit benches that curve gracefully to form a chic, inviting area for guests to mingle. The soft, radiant light creates a warm, welcoming atmosphere, perfect for cocktail hours, receptions, and social gatherings. Ideal for events seeking a blend of sophistication and fun, this setup promises to be a conversation starter.

5-Foot Curved Bar

Elevate your event with our 5-Foot Curved Bar, available from $395. This sleek, LED-illuminated bar not only serves your guests but also becomes a centerpiece of attraction, glowing enticingly to invite conversations and interactions. Its pricing and design make it a versatile choice for corporate events, weddings, and private parties, ensuring your event stands out with a modern twist.

5-Piece Cocktail Area

For those looking to make a grander statement, our 5-Piece Cocktail Area, starting at $750, offers an expansive setup that includes additional seating and tables, all illuminated with the soft, enchanting glow of LED lights. This option is perfect for larger events, such as gala nights, product launches, or any occasion that desires a luxurious, immersive experience. The 5-Piece Cocktail Area not only provides ample space for guests to relax and socialize but also enhances the overall aesthetic of your event space.

Each of our LED furniture rental options is designed with your event’s success in mind. Illuminate your next celebration in Northbrook, IL, with our stunning LED furniture and create an atmosphere that’s not only visually spectacular but also warmly inviting.

 

Why Choose Our LED Furniture?

When it comes to creating a memorable event, the ambiance plays a pivotal role. Our LED furniture rentals offer a unique blend of elegance and excitement, transforming any event space into a visually stunning environment. Here’s why our LED furniture is the perfect choice for your next event in Northbrook, IL:

Unmatched Ambiance: LED furniture illuminates your event with a soft, enchanting glow, creating a magical atmosphere that captivates and delights guests. Whether it’s setting a romantic mood for a wedding or adding a vibrant flair to a party, our LED pieces are sure to impress.

Premium Quality and Variety: We pride ourselves on offering high-quality, durable LED furniture that looks great and functions perfectly throughout your event. From chic cocktail tables to elegant bars and cozy seating areas, our extensive range ensures you’ll find the perfect match for your event’s theme and size.

Ease of Setup and Customization: Our team handles all aspects of delivery, setup, and removal, making the process hassle-free for you. Plus, our LED furniture comes with customizable lighting options, allowing you to tailor the color and intensity of the lights to match your event’s color scheme or mood.

 

Transform Your Event Space

Incorporating LED furniture into your event is not just about adding light; it’s about creating experiences and memories. Here are some tips and examples on how to effectively use LED furniture to elevate your event space:

Complement Your Theme: LED furniture can adapt to any theme, from futuristic and modern to romantic and serene. Use colored lighting to match your event’s color palette or to highlight specific areas like the dance floor or entrance.

Create Dynamic Spaces: Mix and match different pieces of LED furniture to design interactive and engaging spaces. A glowing bar area can become a social hub, while LED seating areas invite guests to relax and enjoy the ambiance.

Examples of Transformation: Imagine a beachside wedding reception where LED cocktail tables emit a soft, blue glow, mimicking the ocean under the moonlight. Or a corporate gala where the entire venue comes to life in the company’s colors, thanks to strategically placed LED bars and benches. These are just a few examples of how LED furniture can transform an event, making it unforgettable.

Top Photo Booth Rentals in Northbrook, IL - Capture Your Event's Best Moments!
Billboard20Booth Prom 1677191074 big LED Furniture & Decor

How to Book Your LED Furniture

Ready to light up your event with our LED furniture? Follow these simple steps to secure your rentals:

Explore Our Options: Visit our website to browse our selection of LED furniture and find the pieces that best fit your event’s needs.

Get in Touch: Once you’ve selected your items, contact us to discuss your event details. You can reach us via

Email: events@wowfactorchicago.com

Phone: (224) 828-2037

Customize Your Order: Let us know any specific requirements or preferences you have, such as color settings for the LED lights or the arrangement of the furniture.

Confirm Your Booking: We’ll provide you with a detailed quote and booking confirmation, including all necessary arrangements for delivery, setup, and pickup.

Enjoy Your Event: With the LED furniture set up to perfection, all that’s left is for you and your guests to enjoy the enhanced ambiance and unforgettable experience.

Illuminate your next event with our LED furniture rentals and create an atmosphere that’s sure to dazzle and delight. Contact us today to start planning!

Gallery of Past Events

Dive into our vibrant gallery of past events that have been transformed by our LED furniture rentals. Each image captures the essence of how LED furniture can elevate an event’s atmosphere, making every occasion a memorable one. Explore the possibilities and envision how these glowing pieces can light up your next event in Northbrook, IL.

Top Photo Booth Rentals in Northbrook, IL - Capture Your Event's Best Moments!
Top Photo Booth Rentals in Northbrook, IL - Capture Your Event's Best Moments!
Top Photo Booth Rentals in Northbrook, IL - Capture Your Event's Best Moments!
Top Photo Booth Rentals in Northbrook, IL - Capture Your Event's Best Moments!
LED Furniture Rentals - The Wow Factor

LED Furniture Rentals

Transform your event into a luminous spectacle with The Wow Factor’s exclusive LED furniture rentals. Located in Northbrook, IL, we provide a stunning array of LED Furniture Rentals that brings an extraordinary glow to any occasion. Perfect for everything from intimate gatherings to grand celebrations, our LED Furniture Rentals enhance the ambiance, making every moment unforgettable. Let’s explore the options and possibilities that our LED furniture rentals offer for setting the perfect mood through captivating light and design.

Wide Range Of LED Furniture

Our diverse selection of LED Furniture Rentals includes everything you need to create a mesmerizing environment. Whether you’re looking for elegant LED bars for a sophisticated cocktail party, cozy LED sofas and chairs for a relaxed gathering, or radiant LED tables that stand out at a wedding, we have the perfect pieces for any event type. Each item is designed not only to impress visually but also to provide comfort and functionality, ensuring that your event’s setup is both stunning and practical.

Perfect For Any Occasion

LED furniture is the ideal choice for a variety of events. It brings a unique glow that transforms spaces and creates a special atmosphere that guests will remember. Whether it’s a corporate event that needs a touch of sleek modernity, a wedding that could use some enchanting light, or a private party that wants to stand out, our LED furniture Rentals fit seamlessly into any theme or setting. Its versatility and appeal make it suitable for not only night-time events but also daytime gatherings where it adds a subtle shimmer when the sun goes down.

Enhancing Ambiance With Captivating Light, Design, and Quality

The real beauty of LED furniture lies in its ability to enhance the overall ambiance of your event. With adjustable settings, you can select colors and brightness levels that match the mood you wish to create. Our LED Furniture Rentals can be set to a single color to complement your event’s theme or programmed to change colors throughout the event, adding dynamism and excitement to the environment. This flexibility allows you to create a personalized experience that truly reflects the spirit of your occasion.

At The Wow Factor, we pride ourselves on offering furniture that isn’t just functional but also beautifully designed. Our LED Furniture Rentals feature sleek lines and modern styling that add a sophisticated touch to any venue. Constructed from high-quality materials and designed to be both durable and weather-resistant, our furniture ensures that your event looks stunning in any condition, indoor or outdoor.

Delivery Area

Is your event outside of our listed area? Contact Us below as we frequently deliver to events farther out and sometimes special accommodations can be made.

NOTE: Extra fees may vary depending on how far you are outside our service area.