items
Set Event Date

Giant Games for Rent

72125

Our Giant games bring huge fun to your next event! Many big attractions to choose from!!!

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['961969'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"11\u2019 x 3\u2019 x 8\u2019","rental_id":"961969","rental_name":"Battleship","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189301\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022961969\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Battleship_586150452.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Battleship_586150452_big.jpg\u0022}}"};

Battleship

from $375.00

Battleship

https://wowfactorchicago.com/rentals/giant-games/battleship/

961969

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['1817255'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1817255","rental_name":"Big Deal Party Package","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022984991\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221817255\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Big Deal Flyer_1679680188.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Big Deal Flyer_1679680188_big.jpg\u0022}}"};

Big Deal Party Package

from $1,650.00

Big+Deal+Party+Package

https://wowfactorchicago.com/rentals/giant-games/big-deal-party-package-2/

1817255

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['2773307'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2773307","rental_name":"Deluxe Ping Pong Tables","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221877119\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222773307\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Stiga Ping Pong Table-1_1743977422.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Stiga Ping Pong Table-1_1743977422_big.png\u0022}}"};

Deluxe Ping Pong Tables

from $350.00

Deluxe+Ping+Pong+Tables

https://wowfactorchicago.com/rentals/new-for-2025/deluxe-ping-pong-tables/

2773307

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['963407'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"35\u2032 x 15\u2032 x 12\u2032","rental_id":"963407","rental_name":"Fun Derby with 3 Horses","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189821\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963407\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/sportsInteractive2 derby_897349016.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/sportsInteractive2 derby_897349016_big.png\u0022}}"};

Fun Derby with 3 Horses

from $495.00

Fun+Derby+with+3+Horses

https://wowfactorchicago.com/rentals/sports-interactives/fun-derby-with-3-horses/

963407

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['963409'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"35\u2032 x 15\u2032 x 12\u2032","rental_id":"963409","rental_name":"Fun Derby with 6 Horses","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189823\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963409\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Hippity Hop_362154133.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Hippity Hop_362154133_big.jpg\u0022}}"};

Fun Derby with 6 Horses

from $595.00

Fun+Derby+with+6+Horses

https://wowfactorchicago.com/rentals/sports-interactives/fun-derby-with-6-horses/

963409

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['967135'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"967135","rental_name":"Giant Classic Games 3-Pack","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022190493\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022967135\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Classic Games_871357583.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Classic Games_871357583_big.jpg\u0022}}"};

Giant Classic Games 3-Pack

from $300.00

Giant+Classic+Games+3-Pack

https://wowfactorchicago.com/rentals/giant-games/giant-classic-games-3-pack/

967135

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['967121'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"967121","rental_name":"Giant Connect 4","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022190485\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022967121\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/unspecified-3_315393516.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/unspecified-3_315393516_big.jpeg\u0022}}"};

Giant Connect 4

from $125.00

Giant+Connect+4

https://wowfactorchicago.com/rentals/giant-games/giant-connect-4/

967121

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['1429371'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1429371","rental_name":"Giant Corn Hole - Set","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022548625\u0022,\u0022rentalimage_createtime\u0022:\u00221639100173\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221639100173\u0022,\u0022rentalimage_itemid\u0022:\u00221429371\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Corn Hole Set_559997085.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Corn Hole Set_559997085_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022548627\u0022,\u0022rentalimage_createtime\u0022:\u00221639100173\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221639100173\u0022,\u0022rentalimage_itemid\u0022:\u00221429371\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Mega Corn Hole Tourney_124898722.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Mega Corn Hole Tourney_124898722_big.jpg\u0022}}"};

Giant Corn Hole – Set

from $650.00

Giant+Corn+Hole+-+Set

https://wowfactorchicago.com/rentals/giant-games/giant-corn-hole-set/

1429371

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['982683'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"6\u2019 x 3\u2019 x 6\u2019","rental_id":"982683","rental_name":"Giant Darts","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022194035\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022982683\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Darts_293029558.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Darts_293029558_big.jpg\u0022}}"};

Giant Darts

from $250.00

Giant+Darts

https://wowfactorchicago.com/rentals/giant-games/giant-darts/

982683

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['982693'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"982693","rental_name":"Giant Horse Shoes","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022194039\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022982693\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Horse Shoes_399803261.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Horse Shoes_399803261_big.jpg\u0022}}"};

Giant Horse Shoes

from $250.00

Giant+Horse+Shoes

https://wowfactorchicago.com/rentals/giant-games/giant-horse-shoes/

982693

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['988039'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"988039","rental_name":"Giant Jenga","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022195355\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022988039\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/giant jenga_462623699.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/giant jenga_462623699_big.jpeg\u0022}}"};

Giant Jenga

from $100.00

Giant+Jenga

https://wowfactorchicago.com/rentals/giant-games/giant-jenga/

988039

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['988049'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"988049","rental_name":"Giant Kerplunk","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022195357\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022988049\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/kerplunk_39011843.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/kerplunk_39011843_big.jpeg\u0022}}"};

Giant Kerplunk

from $100.00

Giant+Kerplunk

https://wowfactorchicago.com/rentals/giant-games/giant-kerplunk/

988049

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['963155'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"963155","rental_name":"Giant LED Jenga","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189675\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963155\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant LED Jenga_314230641.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant LED Jenga_314230641_big.jpg\u0022}}"};

Giant LED Jenga

from $195.00

Giant+LED+Jenga

https://wowfactorchicago.com/rentals/giant-games/giant-led-jenga/

963155

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['967133'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"30\u2019 x 10\u2019 x 3\u2019","rental_id":"967133","rental_name":"Giant Pong","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022190491\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022967133\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/AB5fmAwzyz-NrQAzt4QuEXCvnOxhtyzoy_nfEy3KONU_222323648.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/AB5fmAwzyz-NrQAzt4QuEXCvnOxhtyzoy_nfEy3KONU_222323648_big.jpg\u0022}}"};

Giant Pong

from $285.00

Giant+Pong

https://wowfactorchicago.com/rentals/giant-games/giant-pong/

967133

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['982697'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"982697","rental_name":"Giant Twister","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022194041\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022982697\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Twister_510345229.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Giant Twister_510345229_big.jpg\u0022}}"};

Giant Twister

from $325.00

Giant+Twister

https://wowfactorchicago.com/rentals/sports-interactives/giant-twister/

982697

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['963381'] = {"indoor_outdoor":"","staff":"","electric":"2.00","dimensions":"20\u2019 x 5\u2019 x 8\u2019","rental_id":"963381","rental_name":"Monster Basketball \u2013 Full Court","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189807\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963381\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/sportsInteractive27 full court_10932407.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/sportsInteractive27 full court_10932407_big.jpeg\u0022}}"};

Monster Basketball – Full Court

from $495.00

Monster+Basketball+%E2%80%93+Full+Court

https://wowfactorchicago.com/rentals/sports-interactives/monster-basketball-full-court/

963381

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['963379'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"5\u2032 x 5\u2032 x 8\u2032","rental_id":"963379","rental_name":"Monster Basketball \u2013 Single","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022189805\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022963379\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Monster Basketball_875621879.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/wowfactorchicago\/images\/Monster Basketball_875621879_big.jpg\u0022}}"};

Monster Basketball – Single

from $250.00

Monster+Basketball+%E2%80%93+Single

https://wowfactorchicago.com/rentals/sports-interactives/monster-basketball-single/

963379

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