items
Set Event Date

Games for Rent

155873

Party game rentals inject a playful and interactive spirit into gatherings, transforming ordinary events into lively and memorable celebrations. These rentals encompass a diverse array of games suitable for all ages, offering a delightful mix of competition and camaraderie. Whether it's a backyard birthday bash, a corporate team-building event, or a festive family reunion, party game rentals provide a wide range of options, from classic carnival games to modern interactive experiences. From giant Jenga and cornhole to inflatable games and virtual reality setups, these rentals cater to diverse preferences and interests. The availability of various games ensures that there's something for everyone, promoting engagement and creating a festive atmosphere. Additionally, rental companies typically handle the logistics, from delivery to setup and pickup, allowing hosts to focus on creating a fun and inclusive environment for their guests.

Games are a great way to offer competitive games. Inflatable party games are available to be hired for your next party.
Professional delivery to Sherman Oaks, Ca, Studio City, Ca, Los Angeles. Ca, Calabasas, Ca, Encino, Ca 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['1905245'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"4\u0027x8\u0027x4\u0027","rental_id":"1905245","rental_name":"Dunk Tank","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221110011\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221905245\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/DunkTank_1692983809.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/DunkTank_1692983809_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221173595\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221905245\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_3345_1693703550.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_3345_1693703550_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221173597\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221905245\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_3299_1693703550.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_3299_1693703550_big.JPG\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00222006587\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221905245\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1626_1751421591.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1626_1751421591_big.jpg\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00222008925\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221905245\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_5848_1751577599.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_5848_1751577599_big.jpeg\u0022}}"};

Dunk Tank

from $350.00

Dunk+Tank

https://bounceonrentals.com/rentals/games/dunk-tank/

1905245

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['2775079'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2775079","rental_name":"Carnival Game Package","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221878713\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222775079\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/739A0FFD-2AEE-4F19-80EF-9189867C05DE_1744084192.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/739A0FFD-2AEE-4F19-80EF-9189867C05DE_1744084192_big.png\u0022}}"};

Carnival Game Package

from $750.00

Carnival+Game+Package

https://bounceonrentals.com/rentals/games/carnival-game-package/

2775079

Unlimited

Dropdown

1

1

item unavailable (change date)

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

window.io_category_data = window.io_category_data || {}; window.io_category_data['2990877'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"56\u201dL x 32\u201dW x 36\u201dH","rental_id":"2990877","rental_name":"Warrior Pro Foosball Table","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222086465\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222990877\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0317_1756349017.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0317_1756349017_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222086467\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222990877\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0314_1756349017.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0314_1756349017_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222086469\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222990877\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0315_1756349017.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0315_1756349017_big.jpeg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00222086471\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222990877\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0316_1756349017.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0316_1756349017_big.jpeg\u0022}}"};

Warrior Pro Foosball Table

from $275.00

Warrior+Pro+Foosball+Table

https://bounceonrentals.com/rentals/games/warrior-pro-foosball-table/

2990877

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['2656547'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2656547","rental_name":"9 hole Mini Golf","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221762731\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222656547\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.55.20 AM_1738260182.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.55.20 AM_1738260182_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221762733\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222656547\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.54.51 AM_1738260182.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.54.51 AM_1738260182_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221762735\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222656547\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.54.21 AM_1738260183.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.54.21 AM_1738260183_big.png\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221762737\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222656547\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.56.16 AM_1738260183.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2025-01-30 at 9.56.16 AM_1738260183_big.png\u0022}}"};

9 hole Mini Golf

from $1,200.00

9+hole+Mini+Golf

https://bounceonrentals.com/rentals/games/9-hole-mini-golf/

2656547

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['2469723'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"45 x 20 x 8","rental_id":"2469723","rental_name":"Human Foosball","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221608011\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222469723\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/foosball 1_1725644689.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/foosball 1_1725644689_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221607331\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222469723\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/foosball 2_1725576528.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/foosball 2_1725576528_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221616813\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222469723\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6521_1726602384.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6521_1726602384_big.JPG\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221616815\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222469723\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6523_1726602385.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6523_1726602385_big.JPG\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00221616817\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222469723\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6522_1726602385.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6522_1726602385_big.JPG\u0022}}"};

Human Foosball

from $425.00

Human+Foosball

https://bounceonrentals.com/rentals/games/human-foosball/

2469723

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['2584671'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"106\u0027\u0027 L x 48\u0027\u0027 W x 92\u0027\u0027 H","rental_id":"2584671","rental_name":"Arcade Basketball Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221714009\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222584671\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/pop shot 1_1735678134.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/pop shot 1_1735678134_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221714011\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222584671\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/pop shot basketball_1735678134.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/pop shot basketball_1735678134_big.png\u0022}}"};

Arcade Basketball Game

from $225.00

Arcade+Basketball+Game

https://bounceonrentals.com/rentals/games/arcade-basketball-game/

2584671

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['2475497'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"18ftWx12D","rental_id":"2475497","rental_name":"Soccer Goalie Challenge","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221612343\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222475497\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Soccer Goal 1_1726095533.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Soccer Goal 1_1726095533_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221612345\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222475497\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Soccer Goal 2_1726095534.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Soccer Goal 2_1726095534_big.jpg\u0022}}"};

Soccer Goalie Challenge

from $250.00

Soccer+Goalie+Challenge

https://bounceonrentals.com/rentals/games/soccer-goal-challenge/

2475497

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['2581675'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"15W x 4L x 15H","rental_id":"2581675","rental_name":"Velcro Soccer Target Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221709841\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222581675\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/soccer dart _1735258251.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/soccer dart _1735258251_big.png\u0022}}"};

Velcro Soccer Target Game

from $225.00

Velcro+Soccer+Target+Game

https://bounceonrentals.com/rentals/games/velcro-soccer-target-game/

2581675

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['1905495'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"12x11x14","rental_id":"1905495","rental_name":"Football Toss","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166075\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221905495\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/FootballToss_1692983953.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/FootballToss_1692983953_big.jpg\u0022}}"};

Football Toss

from $185.00

Football+Toss

https://bounceonrentals.com/rentals/games/football-toss/

1905495

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['1652701'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"12 \u00d7 10 \u00d7 10 ft","rental_id":"1652701","rental_name":"Basketball Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820285\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652701\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Bounce On Rentals Basketball Challenge Game Rental_1667769182.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Bounce On Rentals Basketball Challenge Game Rental_1667769182_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022820287\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652701\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/basketball game 2_1666731317.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/basketball game 2_1666731317_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022828977\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652701\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Basketball Game_1667769183.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Basketball Game_1667769183_big.png\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u0022829357\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652701\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-9814_1667839228.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-9814_1667839228_big.jpg\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u0022829359\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652701\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-9815_1667839229.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-9815_1667839229_big.jpg\u0022},\u00225\u0022:{\u0022rentalimage_id\u0022:\u0022829361\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652701\u0022,\u0022rentalimage_order\u0022:\u00225\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-9816_1667839229.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-9816_1667839229_big.jpg\u0022},\u00226\u0022:{\u0022rentalimage_id\u0022:\u00221542757\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652701\u0022,\u0022rentalimage_order\u0022:\u00226\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_3919_1719963371.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_3919_1719963371_big.jpg\u0022}}"};

Basketball Game

from $185.00

Basketball+Game

https://bounceonrentals.com/rentals/games/criss-cross-basketball/

1652701

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['1917403'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"12x6.5x9","rental_id":"1917403","rental_name":"Inflatable Toss Ball (Skeeball)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166077\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221917403\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/InflatableTossBall_1692983976.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/InflatableTossBall_1692983976_big.jpg\u0022}}"};

Inflatable Toss Ball (Skeeball)

from $185.00

Inflatable+Toss+Ball+%28Skeeball%29

https://bounceonrentals.com/rentals/games/inflatable-toss-ball/

1917403

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['1652693'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"8\u00278\u0027\u0027W x 10\u0027L x 8\u0027H","rental_id":"1652693","rental_name":"Viking Axe Throw","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166071\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652693\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Viking Axe Throw_1692983786.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Viking Axe Throw_1692983786_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221166069\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652693\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Double Viking Axe Throw_1692983786.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Double Viking Axe Throw_1692983786_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221110013\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221652693\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/viking_1687973563.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/viking_1687973563_big.jpg\u0022}}"};

Viking Axe Throw

from $185.00

Viking+Axe+Throw

https://bounceonrentals.com/rentals/games/lumberjack-throw/

1652693

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['1681795'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"30 \u00d7 10 \u00d7 14 ft","rental_id":"1681795","rental_name":"Triple Threat Sports Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166123\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221681795\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/TripleThreat_1692984925.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/TripleThreat_1692984925_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022830853\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221681795\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Triple threat sport game 2_1667871984.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Triple threat sport game 2_1667871984_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022964690\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221681795\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-0599_1678481025.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG-0599_1678481025_big.jpg\u0022}}"};

Triple Threat Sports Game

from $320.00

Triple+Threat+Sports+Game

https://bounceonrentals.com/rentals/games/triple-threat-sports-game/

1681795

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['1920273'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"(LxWxH): 30\u2032 x 18\u2032 x 10\u2032","rental_id":"1920273","rental_name":"Race Derby","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166115\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221920273\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/RaceDerby_1692984824.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/RaceDerby_1692984824_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221110029\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221920273\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Fun 1_1687973854.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Fun 1_1687973854_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221110031\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221920273\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Fun 2_1687973855.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Fun 2_1687973855_big.jpg\u0022}}"};

Race Derby

from $450.00

Race+Derby

https://bounceonrentals.com/rentals/games/race-derby/

1920273

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['2017673'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"22x22x5","rental_id":"2017673","rental_name":"Joust","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221165461\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222017673\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/InflatableJoust_1693015959.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/InflatableJoust_1693015959_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221166819\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222017673\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/714764062_1693073254.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/714764062_1693073254_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221220603\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222017673\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/\\Joust_1698970412.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/\\Joust_1698970412_big.jpg\u0022}}"};

Joust

from $320.00

Joust

https://bounceonrentals.com/rentals/games/inflatable-joust/

2017673

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['2053755'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"11ftx2ft","rental_id":"2053755","rental_name":"BattlePut Golf Putting Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221284751\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222053755\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Battleput_1704911225.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Battleput_1704911225_big.jpg\u0022}}"};

BattlePut Golf Putting Game

from $70.00

BattlePut+Golf+Putting+Game

https://bounceonrentals.com/rentals/games/putterball-golf-pong/

2053755

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['2111283'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2111283","rental_name":"Carnival Bowl N Roll","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221245931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222111283\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/bowl and roll_1701730596.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/bowl and roll_1701730596_big.jpg\u0022}}"};

Carnival Bowl N Roll

from $135.00

Carnival+Bowl+N+Roll

https://bounceonrentals.com/rentals/games/bowl-n-roll/

2111283

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['2200943'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"24\u0027\u0027x30\u0027\u0027","rental_id":"2200943","rental_name":"Carnival Balloon Pop","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221345861\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222200943\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Balloon-Pop-Carnival-Red-Case-Game_1708641522.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Balloon-Pop-Carnival-Red-Case-Game_1708641522_big.jpeg\u0022}}"};

Carnival Balloon Pop

from $70.00

Carnival+Balloon+Pop

https://bounceonrentals.com/rentals/games/carnival-balloon-pop/

2200943

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['2054991'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"24\u0027\u0027x30\u0027\u0027","rental_id":"2054991","rental_name":"Carnival Can Smash Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221198785\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222054991\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/CG-CG05 CAN SMASH BLUE wo LEGS_1696462028.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/CG-CG05 CAN SMASH BLUE wo LEGS_1696462028_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221220595\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222054991\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/can smash_1698970103.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/can smash_1698970103_big.jpg\u0022}}"};

Carnival Can Smash Game

from $70.00

Carnival+Can+Smash+Game

https://bounceonrentals.com/rentals/games/carnival-can-smash-game/

2054991

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['2200969'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"24\u0027\u0027x30\u0027\u0027","rental_id":"2200969","rental_name":"Carnival Clown Knockout","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221345885\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222200969\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Clown-Tooth-Knockout-Carnival-Blue-Case-Game_1708641829.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Clown-Tooth-Knockout-Carnival-Blue-Case-Game_1708641829_big.jpeg\u0022}}"};

Carnival Clown Knockout

from $70.00

Carnival+Clown+Knockout

https://bounceonrentals.com/rentals/games/carnival-clown-knockout/

2200969

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['2054997'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"24\u0027\u0027x30\u0027\u0027","rental_id":"2054997","rental_name":"Carnival Duck Hunt Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221198787\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222054997\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/CG-CG23 DUCK HUNT BLUE wo LEGS_1696462755.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/CG-CG23 DUCK HUNT BLUE wo LEGS_1696462755_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221220599\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222054997\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Duck Hunt_1698970290.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Duck Hunt_1698970290_big.jpg\u0022}}"};

Carnival Duck Hunt Game

from $70.00

Carnival+Duck+Hunt+Game

https://bounceonrentals.com/rentals/games/carnival-duck-hunt-game/

2054997

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['2054989'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"24\u0027\u0027x30\u0027\u0027","rental_id":"2054989","rental_name":"Carnival Ring Toss Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221198783\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222054989\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/CG-CG02 RING TOSS RED wo LEGS_1696461830.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/CG-CG02 RING TOSS RED wo LEGS_1696461830_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221220597\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222054989\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Ring toss_1698970169.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Ring toss_1698970169_big.jpg\u0022}}"};

Carnival Ring Toss Game

from $70.00

Carnival+Ring+Toss+Game

https://bounceonrentals.com/rentals/games/carnival-ring-toss-game/

2054989

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['2111569'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2111569","rental_name":"Carnival Megawire Game","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221246171\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222111569\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Megawire-Carnival-Game_1701749713.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Megawire-Carnival-Game_1701749713_big.png\u0022}}"};

Carnival Megawire Game

from $175.00

Carnival+Megawire+Game

https://bounceonrentals.com/rentals/games/megawire-carnival-game/

2111569

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['1610279'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1610279","rental_name":"CORNHOLE","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166065\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221610279\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Cornhole_1692983718.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Cornhole_1692983718_big.jpg\u0022}}"};

CORNHOLE

from $75.00

CORNHOLE

https://bounceonrentals.com/rentals/games/cornhole/

1610279

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['2144913'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144913","rental_name":"Giant Yard Pong","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221284755\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222144913\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Giant Pong_1704911348.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Giant Pong_1704911348_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221284757\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222144913\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Giantpong2_1704911349.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Giantpong2_1704911349_big.jpg\u0022}}"};

Giant Yard Pong

from $40.00

Giant+Yard+Pong

https://bounceonrentals.com/rentals/games/giant-yard-pong/

2144913

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['1610297'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1610297","rental_name":"JUMBO CONNECT FOUR","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166079\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221610297\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/JumboConnect4_1692984045.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/JumboConnect4_1692984045_big.jpg\u0022}}"};

JUMBO CONNECT FOUR

from $70.00

JUMBO+CONNECT+FOUR

https://bounceonrentals.com/rentals/games/jumbo-connect-four/

1610297

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['1610291'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1610291","rental_name":"TUMBLING TOWER","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166129\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221610291\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/TumblingTower_1692984996.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/TumblingTower_1692984996_big.jpg\u0022}}"};

TUMBLING TOWER

from $75.00

TUMBLING+TOWER

https://bounceonrentals.com/rentals/games/tumbling-tower/

1610291

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['1791413'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"18x18 Hex","rental_id":"1791413","rental_name":"Wrecking Ball","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221166133\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221791413\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/WreckingBall_1692985190.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/WreckingBall_1692985190_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022952197\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221791413\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/71E2804A-167B-41C5-BA38-45FBFEA80BEB_1677696838.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/71E2804A-167B-41C5-BA38-45FBFEA80BEB_1677696838_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u0022952199\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221791413\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/81B650FA-AFE2-467A-BC66-CDC2A64D6F15_1677696838.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/81B650FA-AFE2-467A-BC66-CDC2A64D6F15_1677696838_big.jpeg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221057641\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221791413\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_2371_1684453250.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_2371_1684453250_big.jpg\u0022}}"};

Wrecking Ball

from $350.00

Wrecking+Ball

https://bounceonrentals.com/rentals/games/wrecking-ball/

1791413

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