Billy Goat Bounce House Serving San Jacinto County, TX & Surrounding Areas

KIMG5096 1743038039 big Water Slide

items
Set Event Date

Water Slide for Rent

290411
Get wet and have fun with these fun water slides as well as water bounce houses, we have both inflated landing and pool options.
Professional delivery to Coldspring, TX, Willis, TX and surrounding areas. Please submit a quote or contact us to be sure we service your area.
Rentals of water slides are great fun. They're fast and they cool you off fast. The kids will be lined up at the corner for the chance to ride down these massive, exciting, bright slides. The water slide comes with water hose, extension cord, and a water timer for your convenience. We'll bring the cord and hose provided it's within a 80' distance.                            There are numerous choices for small and large water slides. Make sure you pick the appropriate one for your children's age and number of guests. Most slides can accommodate between 10 and 20 guests If they are willing to wait a little. Children of smaller ages may be a little fearful of slides that are very tall however, all of our slides are safe for all ages because they feature edge walls and many come with a net to deter curious children from trying to climb over the their top.                            Our slides will be secured using stakes or sandbags, so that they're secure and safe in mild winds.                            We are confident regardless of the water slide you rent from us you will be happy and want to rent from us again in the future!
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['2727877'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"37x15x20","rental_id":"2727877","rental_name":"20 ft Double lane obstacle water slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222111491\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727877\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 Center Climb waterslide (2)_1757792074.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 Center Climb waterslide (2)_1757792074_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221832329\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727877\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide pool_1757792102.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide pool_1757792102_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00222043259\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727877\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide obstacle_1757792121.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide obstacle_1757792121_big.png\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221832331\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727877\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide right side_1757792139.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide right side_1757792139_big.png\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00222111493\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727877\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide far view 2_1757792156.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/20 waterslide far view 2_1757792156_big.png\u0022}}"};

20 ft Double lane obstacle water slide

from $475.00

20+ft+Double+lane+obstacle+water+slide

https://billygoatrental.com/rentals/home-test/20-ft-double-lane-obstacle-water-slide/

2727877

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['2727567'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"32.5x19x18","rental_id":"2727567","rental_name":"18 ft Double Lane Center Climb Water Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221894415\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727567\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/18 Center Climb waterslide (4)_1757792255.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/18 Center Climb waterslide (4)_1757792255_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221832045\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727567\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5095_1742101568.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5095_1742101568_big.JPG\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221832047\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727567\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5098_1742101569.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5098_1742101569_big.JPG\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221876217\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727567\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5096_1743879984.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5096_1743879984_big.png\u0022}}"};

18 ft Double Lane Center Climb Water Slide

from $375.00

18+ft+Double+Lane+Center+Climb+Water+Slide

https://billygoatrental.com/rentals/home-test/18-ft-double-lane-center-climb-water-slide/

2727567

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['2241605'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"35\u0027L x 15\u0027W x 18\u0027 Tall","rental_id":"2241605","rental_name":"18\u0027 Blue Wave Water Slide","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221877257\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241605\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/18 foot water slide blue wave (6)_1743988106.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/18 foot water slide blue wave (6)_1743988106_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221390911\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241605\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4105_1714758922.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4105_1714758922_big.JPG\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221832497\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241605\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Blue Wave Waterslide Shepherd, TX_1742141987.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Blue Wave Waterslide Shepherd, TX_1742141987_big.JPG\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221832499\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241605\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Cape Royal, Coldspring, TX_1742141988.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Cape Royal, Coldspring, TX_1742141988_big.JPG\u0022}}"};

18′ Blue Wave Water Slide

from $300.00

18%27+Blue+Wave+Water+Slide

https://billygoatrental.com/rentals/home-test/18-blue-wave-marble-wet-or-dry-slide/

2241605

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['2241445'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"27\u0027x13.5\u0027x15\u0027","rental_id":"2241445","rental_name":"15\u0027 Rainbow Water Slide Dual Lane","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221894397\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241445\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/15 dual lane water slide (1)_1744858895.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/15 dual lane water slide (1)_1744858895_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221390921\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241445\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/dual lane 15_1714757973.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/dual lane 15_1714757973_big.png\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221832053\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222241445\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Dual Waterslide Harbor Point, Trinity, TX_1742101872.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Dual Waterslide Harbor Point, Trinity, TX_1742101872_big.JPG\u0022}}"};

15′ Rainbow Water Slide Dual Lane

from $300.00

15%27+Rainbow+Water+Slide+Dual+Lane

https://billygoatrental.com/rentals/home-test/15-rainbow-dual-lane-water-slide/

2241445

Limited

Dropdown

1

1

item unavailable (change date)

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

window.io_category_data = window.io_category_data || {}; window.io_category_data['2385767'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"32x13x15","rental_id":"2385767","rental_name":"Combo Wet - All American","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221894293\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222385767\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Spring Festival All American Combo Wet_1744855651.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Spring Festival All American Combo Wet_1744855651_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221832671\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222385767\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4409_1742154687.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4409_1742154687_big.JPG\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221538833\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222385767\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4420_1719590866.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4420_1719590866_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221538835\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222385767\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4410_1719590867.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG4410_1719590867_big.JPG\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00221832673\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222385767\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/All American Dunk!_1742154687.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/All American Dunk!_1742154687_big.png\u0022}}"};

Combo Wet – All American

from $275.00

Combo+Wet+-+All+American

https://billygoatrental.com/rentals/home-test-2/all-american-combo/

2385767

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['2727565'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"18x20x15","rental_id":"2727565","rental_name":"Combo Wet - Right Side Slide w\/ custom banner","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221894287\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Seasonal Sampler Right Side Slide wet combo_1744855589.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/Seasonal Sampler Right Side Slide wet combo_1744855589_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221832699\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5121_1742159606.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5121_1742159606_big.JPG\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221832021\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5109_1742099737.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5109_1742099737_big.JPG\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221832023\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5103_1742099737.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5103_1742099737_big.JPG\u0022},\u00224\u0022:{\u0022rentalimage_id\u0022:\u00221832025\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00224\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5101_1742099738.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5101_1742099738_big.JPG\u0022},\u00225\u0022:{\u0022rentalimage_id\u0022:\u00221832027\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00225\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5104_1742099738.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5104_1742099738_big.JPG\u0022},\u00226\u0022:{\u0022rentalimage_id\u0022:\u00221832033\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00226\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide happy birthday_1742101007.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide happy birthday_1742101007_big.png\u0022},\u00227\u0022:{\u0022rentalimage_id\u0022:\u00221832035\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00227\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide christmas_1742101007.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide christmas_1742101007_big.png\u0022},\u00228\u0022:{\u0022rentalimage_id\u0022:\u00221832037\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00228\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide easter_1742101007.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide easter_1742101007_big.png\u0022},\u00229\u0022:{\u0022rentalimage_id\u0022:\u00221832039\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u00229\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide halloween_1742101008.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide halloween_1742101008_big.png\u0022},\u002210\u0022:{\u0022rentalimage_id\u0022:\u00221832041\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u002210\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide 4th of July_1742101008.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/right side slide 4th of July_1742101008_big.png\u0022},\u002211\u0022:{\u0022rentalimage_id\u0022:\u00221832701\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222727565\u0022,\u0022rentalimage_order\u0022:\u002211\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5122_1742159607.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/vivanjjackson@gmail.com\/images\/KIMG5122_1742159607_big.JPG\u0022}}"};

Combo Wet – Right Side Slide w/ custom banner

from $225.00

Combo+Wet+-+Right+Side+Slide+w%2F+custom+banner

https://billygoatrental.com/rentals/home-test-2/right-side-slide-combo-2/

2727565

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

dynamic io trk code
Days

Start
End



Some items are not available for the selected delivery method.
You may not be on the correct site. Click here to change location.
Subtotal (estimate):
Delivery Fee (Change Address):
Save Address

Continue Shopping
Enter Address Information (edit)
Locate

If you are taking measurements for a structure such as a building or fence, please provide the height of the structure here. If height does not apply to the wash, for instance for a gutter wash, leave this field empty. Please note if you enter a value here after taking measurements, you will need to take measurements again.