items
Set Event Date

Frame Tent Rentals for Rent

24277
Professional delivery to Franklin OH 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['1508029'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"10 x 10 x 11","rental_id":"1508029","rental_name":"10\u0027x10\u0027 Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882793\u0022,\u0022rentalimage_createtime\u0022:\u00221673379095\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379095\u0022,\u0022rentalimage_itemid\u0022:\u00221508029\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/10-x-10-classic-frame-1-l_54314763.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/10-x-10-classic-frame-1-l_54314763_big.jpg\u0022}}"};

10’x10′ Frame Tent

from $175.00

10%27×10%27+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/10×10-frame-tent/

1508029

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['1137113'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1137113","rental_name":"10\u0027x10\u0027 Red and White Carnival Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882799\u0022,\u0022rentalimage_createtime\u0022:\u00221673379099\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379099\u0022,\u0022rentalimage_itemid\u0022:\u00221137113\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/SPEEDY CARNIVAL TENT 2_653171481.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/SPEEDY CARNIVAL TENT 2_653171481_big.jpg\u0022}}"};

10’x10′ Red and White Carnival Tent

from $150.00

10%27×10%27+Red+and+White+Carnival+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/10×10-red-and-white-carnival-tent/

1137113

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['1178435'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"10x20","rental_id":"1178435","rental_name":"10\u0027x20\u0027 High Peak Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882809\u0022,\u0022rentalimage_createtime\u0022:\u00221673379105\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379105\u0022,\u0022rentalimage_itemid\u0022:\u00221178435\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/10x20 hp frame_56296411.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/10x20 hp frame_56296411_big.jpg\u0022}}"};

10’x20′ High Peak Frame Tent

from $225.00

10%27×20%27+High+Peak+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/10×20-high-peak-frame-tent/

1178435

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['1204871'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"25","rental_id":"1204871","rental_name":"15\u0027x15\u0027 Sectional Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223125\u0022,\u0022rentalimage_createtime\u0022:\u00221699299025\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299025\u0022,\u0022rentalimage_itemid\u0022:\u00221204871\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/15 x 15 frame_730004073.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/15 x 15 frame_730004073_big.jpg\u0022}}"};

15’x15′ Sectional Frame Tent

from $175.00

15%27×15%27+Sectional+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/15×15-sectional-frame-tent/

1204871

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['1790125'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1790125","rental_name":"20 x 20 K Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223127\u0022,\u0022rentalimage_createtime\u0022:\u00221699299136\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299136\u0022,\u0022rentalimage_itemid\u0022:\u00221790125\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 20 frame tent_947720684.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 20 frame tent_947720684_big.jpg\u0022}}"};

20 x 20 K Frame Tent

from $350.00

20+x+20+K+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20-x-20-k-frame-tent/

1790125

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['1790137'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1790137","rental_name":"20 x 30 K Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223129\u0022,\u0022rentalimage_createtime\u0022:\u00221699299168\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299168\u0022,\u0022rentalimage_itemid\u0022:\u00221790137\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 k frame tent_890230782.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 k frame tent_890230782_big.jpg\u0022}}"};

20 x 30 K Frame Tent

from $420.00

20+x+30+K+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20-x-30-k-frame-tent/

1790137

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['1790145'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1790145","rental_name":"20 x 40 K Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223131\u0022,\u0022rentalimage_createtime\u0022:\u00221699299239\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299239\u0022,\u0022rentalimage_itemid\u0022:\u00221790145\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 40 frame tent_539490620.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 40 frame tent_539490620_big.jpg\u0022}}"};

20 x 40 K Frame Tent

from $560.00

20+x+40+K+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20-x-40-k-frame-tent/

1790145

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['1790117'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1790117","rental_name":"20 x 50 K Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223133\u0022,\u0022rentalimage_createtime\u0022:\u00221699299338\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299338\u0022,\u0022rentalimage_itemid\u0022:\u00221790117\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 50 frame tent_411046381.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 50 frame tent_411046381_big.jpg\u0022}}"};

20 x 50 K Frame Tent

from $650.00

20+x+50+K+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20-x-50-k-frame-tent/

1790117

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['992962'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"20x20x13","rental_id":"992962","rental_name":"20\u0027x20\u0027 Gable End Frame Tent (Add Del)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022771643\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022992962\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 wide gable tent_1659647258.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 wide gable tent_1659647258_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223925\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022992962\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c15z20x20_20_x_20_gable_frame_tent_sect__35892_1699382641.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c15z20x20_20_x_20_gable_frame_tent_sect__35892_1699382641_big.jpg\u0022}}"};

20’x20′ Gable End Frame Tent (Add Del)

from $325.00

20%27×20%27+Gable+End+Frame+Tent+%28Add+Del%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×20-gable-end-frame-tent-add-del/

992962

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['1203563'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1203563","rental_name":"20\u0027x30\u0027 FT High Peak Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223143\u0022,\u0022rentalimage_createtime\u0022:\u00221699299543\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299543\u0022,\u0022rentalimage_itemid\u0022:\u00221203563\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 frame tent_946858334.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 frame tent_946858334_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223941\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221203563\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C16Y20X30-20-x-30-master-series-high-peak-frame-tents-sect__95350_1699382920.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C16Y20X30-20-x-30-master-series-high-peak-frame-tents-sect__95350_1699382920_big.jpg\u0022}}"};

20’x30′ FT High Peak Frame Tent

from $490.00

20%27×30%27+FT+High+Peak+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×30-ft-high-peak-frame-tent/

1203563

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['992963'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"992963","rental_name":"20\u0027x30\u0027 Gable End Frame Tent (Add Del)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833045\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022992963\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C15Y20X30-20-x-30-gable-frame-tent2-l_1668006527.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C15Y20X30-20-x-30-gable-frame-tent2-l_1668006527_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223943\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022992963\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c15z20x30_20_x_30_gable_frame_tent_sect__83322_1699382934.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c15z20x30_20_x_30_gable_frame_tent_sect__83322_1699382934_big.jpg\u0022}}"};

20’x30′ Gable End Frame Tent (Add Del)

from $425.00

20%27×30%27+Gable+End+Frame+Tent+%28Add+Del%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×30-gable-end-frame-tent-add-del/

992963

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['992965'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"992965","rental_name":"20\u0027x40\u0027 Gable End Frame Tent (Add Del)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833047\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022992965\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C15Y20X30-20-x-30-gable-frame-tent2-l_1668006546.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C15Y20X30-20-x-30-gable-frame-tent2-l_1668006546_big.jpg\u0022}}"};

20’x40′ Gable End Frame Tent (Add Del)

from $475.00

20%27×40%27+Gable+End+Frame+Tent+%28Add+Del%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×40-gable-end-frame-tent-add-del/

992965

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['992966'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"992966","rental_name":"20\u0027x50\u0027 Gable End Frame Tent (Add Del)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833049\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022992966\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C15Y20X30-20-x-30-gable-frame-tent2-l_1668006562.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C15Y20X30-20-x-30-gable-frame-tent2-l_1668006562_big.jpg\u0022}}"};

20’x50′ Gable End Frame Tent (Add Del)

from $525.00

20%27×50%27+Gable+End+Frame+Tent+%28Add+Del%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×50-gable-end-frame-tent-add-del/

992966

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['2144933'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144933","rental_name":"30\u0027x105\u0027 K FRAME TENT","images_arr":"{}"};

30’x105′ K FRAME TENT

from $2,520.00

30%27×105%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×105-k-frame-tent/

2144933

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['2144941'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144941","rental_name":"30\u0027x120\u0027 K FRAME TENT","images_arr":"{}"};

30’x120′ K FRAME TENT

from $2,880.00

30%27×120%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×120-k-frame-tent/

2144941

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['2144991'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144991","rental_name":"30\u0027x135\u0027 K FRAME TENT","images_arr":"{}"};

30’x135′ K FRAME TENT

from $3,240.00

30%27×135%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×135-k-frame-tent/

2144991

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['2144901'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144901","rental_name":"30\u0027x150\u0027 K FRAME TENT","images_arr":"{}"};

30’x150′ K FRAME TENT

from $3,600.00

30%27×150%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×150-k-frame-tent/

2144901

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['2144909'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144909","rental_name":"30\u0027x30\u0027 K FRAME TENT","images_arr":"{}"};

30’x30′ K FRAME TENT

from $720.00

30%27×30%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×30-k-frame-tent/

2144909

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['2144915'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144915","rental_name":"30\u0027x45\u0027 K FRAME TENT","images_arr":"{}"};

30’x45′ K FRAME TENT

from $1,080.00

30%27×45%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×45-k-frame-tent/

2144915

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['2144905'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144905","rental_name":"30\u0027x75\u0027 K FRAME TENT","images_arr":"{}"};

30’x75′ K FRAME TENT

from $1,800.00

30%27×75%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×75-k-frame-tent/

2144905

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['1539347'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"90 x 30 x 15.5","rental_id":"1539347","rental_name":"30\u0027x90\u0027 Frame Tent (Festival Tent) DNR DNR","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833055\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221539347\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30x90_Pole_Tent_-_Exterior_2048x_01b41216-ae7b-4012-abfd-22bf05c1d694_2048x_1668006740.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30x90_Pole_Tent_-_Exterior_2048x_01b41216-ae7b-4012-abfd-22bf05c1d694_2048x_1668006740_big.png\u0022}}"};

30’x90′ Frame Tent (Festival Tent) DNR DNR

from $1,350.00

30%27×90%27+Frame+Tent+%28Festival+Tent%29+DNR+DNR

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×90-frame-tent-festival-tent-dnr-dnr/

1539347

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['2144931'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144931","rental_name":"30\u0027x90\u0027 K FRAME TENT","images_arr":"{}"};

30’x90′ K FRAME TENT

from $2,160.00

30%27×90%27+K+FRAME+TENT

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×90-k-frame-tent/

2144931

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['2086039'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2086039","rental_name":"Block Cover -White","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221224779\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222086039\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/block cover_1699466650.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/block cover_1699466650_big.jpg\u0022}}"};

Block Cover -White

from $10.00

Block+Cover+-White

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/block-cover-white/

2086039

Unlimited

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['1712761'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1712761","rental_name":"Partial Block Setup","images_arr":"{}"};

Partial Block Setup

from $0.00

Partial+Block+Setup

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/partial-block-setup/

1712761

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['484503'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"484503","rental_name":"Tent Setup 15\u0027x15\u0027","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833063\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022484503\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tent1_1668006887.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tent1_1668006887_big.jpg\u0022}}"};

Tent Setup 15’x15′

from $75.00

Tent+Setup+15%27×15%27

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/tent-setup-15×15/

484503

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['227797'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"227797","rental_name":"10\u0027x10\u0027 Pop Up","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882797\u0022,\u0022rentalimage_createtime\u0022:\u00221673379097\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379097\u0022,\u0022rentalimage_itemid\u0022:\u0022227797\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/9839262430b9be6506a73245b343ff98.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/9839262430b9be6506a73245b343ff98.jpg\u0022}}"};

10’x10′ Pop Up

from $0.00

10%27×10%27+Pop+Up

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/10×10-pop-up/

227797

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['965635'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"965635","rental_name":"10\u0027x _\u0027 Frame Tent","images_arr":"{}"};

10’x _’ Frame Tent

from $0.00

10%27x+_%27+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/10x-_-frame-tent/

965635

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['965641'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"965641","rental_name":"10\u0027x20\u0027 Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882807\u0022,\u0022rentalimage_createtime\u0022:\u00221673379103\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379103\u0022,\u0022rentalimage_itemid\u0022:\u0022965641\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/1552526375205-1.jpg_1668002518.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/1552526375205-1.jpg_1668002518_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223923\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022965641\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z10x20_10_x_20_classic_frame_tent_sect__82963_1699382516.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z10x20_10_x_20_classic_frame_tent_sect__82963_1699382516_big.jpg\u0022}}"};

10’x20′ Frame Tent

from $200.00

10%27×20%27+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/10×20-frame-tent/

965641

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['216553'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"15x13x15","rental_id":"216553","rental_name":"15\u0027x15\u0027 Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223123\u0022,\u0022rentalimage_createtime\u0022:\u00221699298996\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699298996\u0022,\u0022rentalimage_itemid\u0022:\u0022216553\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/15 x 15 frame_660855970.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/15 x 15 frame_660855970_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223937\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216553\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06y15x15_15_x_15_classic_frame_tent__94315_1699382800.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06y15x15_15_x_15_classic_frame_tent__94315_1699382800_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221223939\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216553\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06y15x15_15_x_15_classic_frame_4__65883_1699382800.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06y15x15_15_x_15_classic_frame_4__65883_1699382800_big.jpg\u0022}}"};

15’x15′ Frame Tent

from $0.00

15%27×15%27+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/15×15-frame-tent/

216553

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['745153'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"745153","rental_name":"20\u0027x20\u0027 Traditional Frame","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223135\u0022,\u0022rentalimage_createtime\u0022:\u00221699299379\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299379\u0022,\u0022rentalimage_itemid\u0022:\u0022745153\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 20 frame tent_675262624.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 20 frame tent_675262624_big.jpg\u0022}}"};

20’x20′ Traditional Frame

from $290.00

20%27×20%27+Traditional+Frame

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×20-traditional-frame/

745153

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['745161'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"20 x 30 x 13","rental_id":"745161","rental_name":"20\u0027x30\u0027 Traditional Frame","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223167\u0022,\u0022rentalimage_createtime\u0022:\u00221699299746\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299746\u0022,\u0022rentalimage_itemid\u0022:\u0022745161\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 frane tebt_622422856.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 frane tebt_622422856_big.jpeg\u0022}}"};

20’x30′ Traditional Frame

from $450.00

20%27×30%27+Traditional+Frame

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×30-traditional-frame/

745161

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['697347'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"20x17x20","rental_id":"697347","rental_name":"20\u0027x20\u0027 Flag High Peak Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022154247\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022697347\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Flag Tent_857229488.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Flag Tent_857229488_big.jpg\u0022}}"};

20’x20′ Flag High Peak Frame Tent

from $0.00

20%27×20%27+Flag+High+Peak+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×20-flag-high-peak-frame-tent/

697347

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['216541'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"20x17x20","rental_id":"216541","rental_name":"20\u0027x20\u0027 High Peak Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221181527\u0022,\u0022rentalimage_createtime\u0022:\u00221694609985\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221694609985\u0022,\u0022rentalimage_itemid\u0022:\u0022216541\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/403b8d7384f451ecf5cfedd964c86977.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/403b8d7384f451ecf5cfedd964c86977.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223927\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216541\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C16Y20X20-20-x-20-master-series-high-peak-frame-tents-sect__11775_1699382653.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C16Y20X20-20-x-20-master-series-high-peak-frame-tents-sect__11775_1699382653_big.jpg\u0022}}"};

20’x20′ High Peak Frame Tent

from $0.00

20%27×20%27+High+Peak+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×20-high-peak-frame-tent/

216541

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['216543'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"30x17x20","rental_id":"216543","rental_name":"20\u0027x30\u0027 High Peak Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223165\u0022,\u0022rentalimage_createtime\u0022:\u00221699299592\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299592\u0022,\u0022rentalimage_itemid\u0022:\u0022216543\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 frame tent_34525155.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/20 x 30 frame tent_34525155_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223945\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022216543\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C16Y20X30-20-x-30-master-series-high-peak-frame-tents-sect__95350_1699382945.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/C16Y20X30-20-x-30-master-series-high-peak-frame-tents-sect__95350_1699382945_big.jpg\u0022}}"};

20’x30′ High Peak Frame Tent

from $390.00

20%27×30%27+High+Peak+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/20×30-high-peak-frame-tent/

216543

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['355668'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"355668","rental_name":"30\u0027x30\u0027 Frame Tent (Festival)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223169\u0022,\u0022rentalimage_createtime\u0022:\u00221699299902\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699299902\u0022,\u0022rentalimage_itemid\u0022:\u0022355668\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30 x 30 frame tent_119069739.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30 x 30 frame tent_119069739_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223967\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355668\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x30_30_x_30_master_tent_sect__25850_1699383290.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x30_30_x_30_master_tent_sect__25850_1699383290_big.jpg\u0022}}"};

30’x30′ Frame Tent (Festival)

from $650.00

30%27×30%27+Frame+Tent+%28Festival%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×30-frame-tent/

355668

Limited

Dropdown

1

0

item unavailable (change date)

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

window.io_category_data = window.io_category_data || {}; window.io_category_data['355744'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"30x45x16","rental_id":"355744","rental_name":"30\u0027x45\u0027 Frame Tent (Festival Tent)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833071\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355744\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30x45-frame-tent-cincinnati-tent-rental_1668007057.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30x45-frame-tent-cincinnati-tent-rental_1668007057_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223963\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355744\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x45_30_x_45_sect_classic_series_frame_tent_1__45796_1699383269.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x45_30_x_45_sect_classic_series_frame_tent_1__45796_1699383269_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221223965\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355744\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x45_30_x_45_classic_frame_tent_sect__22396_1699383269.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x45_30_x_45_classic_frame_tent_sect__22396_1699383269_big.jpg\u0022}}"};

30’x45′ Frame Tent (Festival Tent)

from $950.00

30%27×45%27+Frame+Tent+%28Festival+Tent%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×45-frame-tent/

355744

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['355748'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"30x60x16","rental_id":"355748","rental_name":"30\u0027x60\u0027 Frame Tent (Festival)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833073\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355748\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30x45-frame-tent-cincinnati-tent-rental_1668007072.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/30x45-frame-tent-cincinnati-tent-rental_1668007072_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223959\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355748\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x60_30_x_60_classic_frame_tent_sect__82910_1699383247.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x60_30_x_60_classic_frame_tent_sect__82910_1699383247_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221223961\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355748\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x60_30_x_60_sect_classic_frame_tent_1__48169_1699383248.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z30x60_30_x_60_sect_classic_frame_tent_1__48169_1699383248_big.jpg\u0022}}"};

30’x60′ Frame Tent (Festival)

from $1,250.00

30%27×60%27+Frame+Tent+%28Festival%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×60-frame-tent-festival/

355748

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['355752'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"30x75x16","rental_id":"355752","rental_name":"30\u0027x75\u0027 Frame Tent (Festival Tent)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833075\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355752\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40x60_A_Pole_Wedding_2048x_1668007115.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40x60_A_Pole_Wedding_2048x_1668007115_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223957\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022355752\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x75_30_x_75_master_tent_sect__60065_1699383207.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x75_30_x_75_master_tent_sect__60065_1699383207_big.jpg\u0022}}"};

30’x75′ Frame Tent (Festival Tent)

from $1,500.00

30%27×75%27+Frame+Tent+%28Festival+Tent%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×75-frame-tent-festival-tent/

355752

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['233844'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"19L x 20W x 22H","rental_id":"233844","rental_name":"Concrete Tent Blocks 350-550 (Frame Tents Only)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022822185\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022233844\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/43412-1_1666891450.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/43412-1_1666891450_big.jpg\u0022}}"};

Concrete Tent Blocks 350-550 (Frame Tents Only)

from $0.00

Concrete+Tent+Blocks+350-550+%28Frame+Tents+Only%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/concrete-tent-blocks-350-550-frame-tents-only/

233844

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['450985'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"90 x 30 x 15.5","rental_id":"450985","rental_name":"30\u0027x90\u0027 Frame Tent (Festival Tent)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223949\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022450985\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x90_30_x_90_master_tent_sect__69193_1699383117.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x90_30_x_90_master_tent_sect__69193_1699383117_big.jpg\u0022}}"};

30’x90′ Frame Tent (Festival Tent)

from $1,620.00

30%27×90%27+Frame+Tent+%28Festival+Tent%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×90-frame-tent-festival-tent/

450985

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['450993'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"450993","rental_name":"30\u0027x105\u0027 Frame Tent (Festival Tent)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833077\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022450993\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Frame_Tent_20x70-5_1668007147.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Frame_Tent_20x70-5_1668007147_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223947\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022450993\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x90_30_x_90_master_tent_sect__69193_1699383087.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c07z30x90_30_x_90_master_tent_sect__69193_1699383087_big.jpg\u0022}}"};

30’x105′ Frame Tent (Festival Tent)

from $1,890.00

30%27×105%27+Frame+Tent+%28Festival+Tent%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×105-frame-tent-festival-tent/

450993

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['657283'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"40\u0027x30\u0027","rental_id":"657283","rental_name":"40\u0027x_ Frame Tent","images_arr":"{}"};

40’x_ Frame Tent

from $0.00

40%27x_+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/40x_-frame-tent/

657283

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['657309'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"657309","rental_name":"40\u0027x30\u0027 Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833081\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022657309\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG-3453-scaled-uai-2064x1548_1668007183.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG-3453-scaled-uai-2064x1548_1668007183_big.jpg\u0022}}"};

40’x30′ Frame Tent

from $1,350.00

40%27×30%27+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/40×30-frame-tent/

657309

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['657289'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"657289","rental_name":"40\u0027x45\u0027 Frame Tent (Structured)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223185\u0022,\u0022rentalimage_createtime\u0022:\u00221699300040\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699300040\u0022,\u0022rentalimage_itemid\u0022:\u0022657289\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40x60 frame tent_920997529.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40x60 frame tent_920997529_big.jpg\u0022}}"};

40’x45′ Frame Tent (Structured)

from $1,800.00

40%27×45%27+Frame+Tent+%28Structured%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/40×45-frame-tent-structured/

657289

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['657295'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"657295","rental_name":"40\u0027x60\u0027 Frame Tent","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221223187\u0022,\u0022rentalimage_createtime\u0022:\u00221699300072\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221699300072\u0022,\u0022rentalimage_itemid\u0022:\u0022657295\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40x60 frame tent_513077458.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/40x60 frame tent_513077458_big.jpg\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221223969\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022657295\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z40x60_40_x_60_classic_frame_tent_sect__23757_1699383381.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z40x60_40_x_60_classic_frame_tent_sect__23757_1699383381_big.jpg\u0022},\u00222\u0022:{\u0022rentalimage_id\u0022:\u00221223971\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022657295\u0022,\u0022rentalimage_order\u0022:\u00222\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z40x60_40_x_60_sect_classic_frame_tent_1__45909_1699383381.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z40x60_40_x_60_sect_classic_frame_tent_1__45909_1699383381_big.jpg\u0022},\u00223\u0022:{\u0022rentalimage_id\u0022:\u00221223973\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022657295\u0022,\u0022rentalimage_order\u0022:\u00223\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z40x60_40_x_60_sect_classic_frame_tent_3__39552_1699383382.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c06z40x60_40_x_60_sect_classic_frame_tent_3__39552_1699383382_big.jpg\u0022}}"};

40’x60′ Frame Tent

from $2,800.00

40%27×60%27+Frame+Tent

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/40×60-frame-tent/

657295

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['965649'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"965649","rental_name":"10\u0027x10\u0027 Mid (for 10\u0027x20\u0027 Tent)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882795\u0022,\u0022rentalimage_createtime\u0022:\u00221673379096\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379096\u0022,\u0022rentalimage_itemid\u0022:\u0022965649\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/31p9VJJZHPL._AC__1668007282.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/31p9VJJZHPL._AC__1668007282_big.jpg\u0022}}"};

10’x10′ Mid (for 10’x20′ Tent)

from $100.00

10%27×10%27+Mid+%28for+10%27×20%27+Tent%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/10×10-mid-for-10×20-tent/

965649

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['336614'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"336614","rental_name":"30\u0027x15\u0027 Frame Tent M (DO NOT RENT SEPERATELY)","images_arr":"{}"};

30’x15′ Frame Tent M (DO NOT RENT SEPERATELY)

from $0.00

30%27×15%27+Frame+Tent+M+%28DO+NOT+RENT+SEPERATELY%29

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/30×15-frame-tent-m-do-not-rent-seperately/

336614

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['657285'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"657285","rental_name":"40\u0027x15\u0027 Mid DO NOT RENT SEPERATLY","images_arr":"{}"};

40’x15′ Mid DO NOT RENT SEPERATLY

from $600.00

40%27×15%27+Mid+DO+NOT+RENT+SEPERATLY

https://www.aspartyrental.com/dayton3/rentals/frame-tent-rental/40×15-mid-do-not-rent-seperatly/

657285

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

Frame Tent Rentals Dayton Ohio- 

Looking for  frame tent rentals near me in Dayton and Ohio regions? A&S Party Rental is your tent rental company experts! We frame rent tents for Company Picnics, College Events, Grand Openings, Graduation Parties and More. Party Tents are the perfect solution when you are having an outdoor event. First, frame tents not only protect your guests from the rain, but also from the sun and heat. Then, We professionally install our tents so that you have a stress free event. Our translucent tents can make your event stand out.  We also offer tent accessories like sidewalls, lights, tent draping, heating and cooling. We also rent tables and chair for our frame tent rentals. A&S Party Rental can also provide decorations to transform your tent into the wedding or party venue of your dreams.

 

 

Furthermore, Our Tent rentals come in many shapes, as well as sizes. Additionally, A&S rents frame tents and pole tents.  Have you seen the dramatic look of a high peak tent? 

Check out our YouTube Channel, Facebook , Pinterest & TikTok

Want to know what our customers think of us? Check out our reviews here.

Google Reviews  or Facebook Reviews

 

 

So If you are Planning a wedding tent rental? Our professional wedding planners can help you plan your dream wedding. We have over 50 theme decorated tables for weddings and special events. Check out The Hottest Wedding Rental Trends Here. A&S Party Rental is your one stop shop for linens and centerpiece rentals. Want a virtual tour click here. Want a catalog sent to your home address? Click here for a our digital catalog. Call or stop by today to see how we can make your event one to remember!

Have you used our tents at your event? We would love to hear from you and even see pictures! You can email us or even stop by to visit to tell us your story. A&S Party Rental would love to feature your event to help spread inspiration to others looking for wedding or event ideas!

Â