items
Set Event Date

Seasonal Inflatables for Rent

354045


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['3106449'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"13ft x 13ft x 14ftH","rental_id":"3106449","rental_name":"Gingerbread Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222190801\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223106449\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/ChatGPT Image Nov 26, 2025, 08_31_42 AM_1764184036.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/ChatGPT Image Nov 26, 2025, 08_31_42 AM_1764184036_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00222190803\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223106449\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1453_1764184036.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1453_1764184036_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222203103\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223106449\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0652_1765073174.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0652_1765073174_big.jpeg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00222190809\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223106449\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1455_1764184039.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1455_1764184039_big.jpeg\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00222190811\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223106449\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1456_1764184040.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_1456_1764184040_big.jpeg\u0022},\u00225\u0022:{\u0022rentalimage_id\u0022:\u00222203105\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223106449\u0022,\u0022rentalimage_order\u0022:\u00225\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0651_1765073175.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0651_1765073175_big.jpeg\u0022}}"};

Gingerbread Bounce House

from $225.00

Gingerbread+Bounce+House

https://bounceonrentals.com/rentals/bounce-houses/gingerbread-bounce-house/

3106449

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['2480665'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"15x20ft","rental_id":"2480665","rental_name":"Giant Snow Man Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221616755\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222480665\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6514 2_1726587235.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6514 2_1726587235_big.JPG\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221616757\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222480665\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6515 2_1726587235.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6515 2_1726587235_big.JPG\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221616759\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222480665\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6517 2_1726587235.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6517 2_1726587235_big.JPG\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221616761\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222480665\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6518_1726587235.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6518_1726587235_big.JPG\u0022}}"};

Giant Snow Man Bounce House

from $499.00

Giant+Snow+Man+Bounce+House

https://bounceonrentals.com/rentals/bounce-houses/giant-snow-man/

2480665

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['2507019'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"25Lx13Wx14H","rental_id":"2507019","rental_name":"Prime Christmas Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221638231\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222507019\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6741_1728969152.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6741_1728969152_big.jpg\u0022}}"};

Prime Christmas Combo

from $284.00

Prime+Christmas+Combo

https://bounceonrentals.com/rentals/seasonal-inflatables/prime-christmas-combo/

2507019

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['2480427'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"2480427","rental_name":"Christmas Sleigh Photo Op","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221616663\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222480427\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6512_1726554296.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6512_1726554296_big.jpeg\u0022}}"};

Christmas Sleigh Photo Op

from $249.00

Christmas+Sleigh+Photo+Op

https://bounceonrentals.com/rentals/bounce-houses/christmas-sleigh-photo-op/

2480427

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['2507015'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"13x13x14HFt","rental_id":"2507015","rental_name":"Magic Bounce House with Fall Festival Banner","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221638227\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222507015\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6737_1728968928.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6737_1728968928_big.jpg\u0022}}"};

Magic Bounce House with Fall Festival Banner

from $184.00

Magic+Bounce+House+with+Fall+Festival+Banner

https://bounceonrentals.com/rentals/seasonal-inflatables/magic-bounce-house-with-fall-festival-banner/

2507015

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['2851893'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"22\u2019 L x 13\u2019 W x 14\u2019 H","rental_id":"2851893","rental_name":"Magic Marble Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221956809\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222851893\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_9206_1748054169.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_9206_1748054169.jpeg\u0022}}"};

Magic Marble Combo

from $259.00

Magic+Marble+Combo

https://bounceonrentals.com/rentals/slides-combos/magic-marble-combo-2/

2851893

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['2487933'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"13x13x14HFt","rental_id":"2487933","rental_name":"13x13 Magic Marble","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221622639\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222487933\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2024-09-24 at 8.07.41 PM_1727233833.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Screen Shot 2024-09-24 at 8.07.41 PM_1727233833_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221622417\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222487933\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Magic Marble 2_1727215235.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Magic Marble 2_1727215235_big.png\u0022}}"};

13×13 Magic Marble

from $159.00

13×13+Magic+Marble

https://bounceonrentals.com/rentals/bounce-houses/13×13-magic-marble/

2487933

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['2501495'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"23Hx15W","rental_id":"2501495","rental_name":"Giant Bunny Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221888109\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222501495\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_4712_1744670723.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_4712_1744670723_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221888111\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222501495\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_4696_1744670724.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_4696_1744670724_big.jpeg\u0022}}"};

Giant Bunny Bounce House

from $499.00

Giant+Bunny+Bounce+House

https://bounceonrentals.com/rentals/seasonal-inflatables/giant-bunny/

2501495

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['2495045'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"30 x 19 x 17","rental_id":"2495045","rental_name":"Halloween Obstacle Course","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221628379\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_2459_1727823532.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_2459_1727823532_big.jpeg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221628381\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0326_1727823533.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0326_1727823533_big.jpeg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221628383\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_8842_1727823534.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_8842_1727823534_big.jpeg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221632861\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween Obstacle COurse _1728338933.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween Obstacle COurse _1728338933_big.jpg\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00221632863\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween OBstacle COurse 2_1728338933.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween OBstacle COurse 2_1728338933_big.jpg\u0022},\u00225\u0022:{\u0022rentalimage_id\u0022:\u00221632865\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00225\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween OBstacle course 3_1728338933.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween OBstacle course 3_1728338933_big.jpg\u0022},\u00226\u0022:{\u0022rentalimage_id\u0022:\u00221632867\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00226\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween OBstacle 4_1728338933.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Halloween OBstacle 4_1728338933_big.jpg\u0022},\u00227\u0022:{\u0022rentalimage_id\u0022:\u00222141174\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00227\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0179_1760200610.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0179_1760200610_big.jpeg\u0022},\u00228\u0022:{\u0022rentalimage_id\u0022:\u00222141176\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00228\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0178_1760200611.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0178_1760200611_big.jpeg\u0022},\u00229\u0022:{\u0022rentalimage_id\u0022:\u00222141178\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u00229\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0177_1760200611.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0177_1760200611_big.jpeg\u0022},\u002210\u0022:{\u0022rentalimage_id\u0022:\u00222141180\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222495045\u0022,\u0022rentalimage_order\u0022:\u002210\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0175_1760200612.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_0175_1760200612_big.jpeg\u0022}}"};

Halloween Obstacle Course

from $625.00

Halloween+Obstacle+Course

https://bounceonrentals.com/rentals/obstacle-courses/halloween-obstacle-course/

2495045

Limited

Hidden

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['2480025'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"13Wx25Lx14H ft","rental_id":"2480025","rental_name":"Pumpkin Combo","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221616283\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222480025\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Pumpkin Combo_1726530839.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Pumpkin Combo_1726530839_big.jpg\u0022}}"};

Pumpkin Combo

from $395.00

Pumpkin+Combo

https://bounceonrentals.com/rentals/slides-combos/halloween-pumpkin-combo/

2480025

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['2480893'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"13x 13 x 15","rental_id":"2480893","rental_name":"Pumpkin Bounce House","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221616809\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222480893\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Pumpkin Jumper_1726600549.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/Pumpkin Jumper_1726600549_big.jpg\u0022}}"};

Pumpkin Bounce House

from $275.00

Pumpkin+Bounce+House

https://bounceonrentals.com/rentals/bounce-houses/halloween-pumpkin-bounce-house/

2480893

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['2506885'] = {"indoor_outdoor":"","staff":"","electric":"1.50","dimensions":"25Lx13Wx14H","rental_id":"2506885","rental_name":"Prime Combo with Halloween Banner #2","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221638079\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222506885\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6740_1728952360.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6740_1728952360_big.jpg\u0022}}"};

Prime Combo with Halloween Banner #2

from $284.00

Prime+Combo+with+Halloween+Banner+%232

https://bounceonrentals.com/rentals/seasonal-inflatables/prime-combo-with-halloween-banner-2/

2506885

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['2506883'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"13x13x14","rental_id":"2506883","rental_name":"Magic Bounce House with Halloween #1 Banner","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221638077\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222506883\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6738_1728952101.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/BounceonRentals\/images\/IMG_6738_1728952101_big.jpg\u0022}}"};

Magic Bounce House with Halloween #1 Banner

from $184.00

Magic+Bounce+House+with+Halloween+%231+Banner

https://bounceonrentals.com/rentals/seasonal-inflatables/magic-bounce-house-with-halloween-1-banner/

2506883

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