items
Set Event Date

Tent Options for Rent

60181
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['800137'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"800137","rental_name":"15\u0027 Frame Tent Side Cathederal windows(40W Structure Only)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833211\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022800137\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/15cath_1668009437.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/15cath_1668009437_big.jpg\u0022}}"};

15′ Frame Tent Side Cathederal windows(40W Structure Only)

from $38.00

15%27+Frame+Tent+Side+Cathederal+windows%2840W+Structure+Only%29

https://www.aspartyrental.com/lexington/inventory/tent-options/15-frame-tent-side-cathederal-windows40w-frame-tent-only/

800137

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['2144895'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2144895","rental_name":"30\u0027x15\u0027 Mid CLEAR TOP","images_arr":"{}"};

30’x15′ Mid CLEAR TOP

from $600.00

30%27×15%27+Mid+CLEAR+TOP

https://www.aspartyrental.com/lexington/inventory/tent-options/30×15-mid-clear-top/

2144895

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['1391787'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1391787","rental_name":"8 Light Chandelier","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022510341\u0022,\u0022rentalimage_createtime\u0022:\u00221631920056\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221631920056\u0022,\u0022rentalimage_itemid\u0022:\u00221391787\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/chandelier_974965367.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/chandelier_974965367_big.jpg\u0022}}"};

8 Light Chandelier

from $200.00

8+Light+Chandelier

https://www.aspartyrental.com/lexington/inventory/tent-options/8-light-chandelier/

1391787

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['1168315'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1168315","rental_name":"Big A.. Fans","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222172739\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221168315\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-11 2.09.00 PM_1762888292.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-11 2.09.00 PM_1762888292_big.png\u0022}}"};

Big A.. Fans

from $175.00

Big+A..+Fans

https://www.aspartyrental.com/lexington/heating-cooling/big-a-fans/

1168315

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/lexington/inventory/tents-frame/block-cover-white/

2086039

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['885269'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"885269","rental_name":"Disposable Trashcans","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022821005\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022885269\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/71algoby6JL_1666807592.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/71algoby6JL_1666807592_big.jpg\u0022}}"};

Disposable Trashcans

from $20.00

Disposable+Trashcans

https://www.aspartyrental.com/lexington/inventory/tent-options/disposable-trashcans/

885269

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['2563657'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2563657","rental_name":"Exit Signs","images_arr":"{}"};

Exit Signs

from $0.00

Exit+Signs

https://www.aspartyrental.com/lexington/inventory/tent-options/exit-signs/

2563657

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['1129577'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1129577","rental_name":"Fire Marshall Package","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022822193\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221129577\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (1)_1666891589.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (1)_1666891589_big.png\u0022}}"};

Fire Marshall Package

from $150.00

Fire+Marshall+Package

https://www.aspartyrental.com/lexington/inventory/tent-options/fire-marshall-package/

1129577

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['2697961'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2697961","rental_name":"Portable Cooling Fan","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221809931\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222697961\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/portablecooler_1751997760.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/portablecooler_1751997760_big.png\u0022}}"};

Portable Cooling Fan

from $250.00

Portable+Cooling+Fan

https://www.aspartyrental.com/lexington/inventory/event-furniture/portable-cooling-fan/

2697961

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

Tent Block Cover

from $0.00

Tent+Block+Cover

https://www.aspartyrental.com/lexington/inventory/tent-options/tent-block-cover/

2012281

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['2411323'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2411323","rental_name":"Tent Ceiling Drape","images_arr":"{}"};

Tent Ceiling Drape

from $1,450.00

Tent+Ceiling+Drape

https://www.aspartyrental.com/lexington/inventory/tent-options/tent-ceiling-drape/

2411323

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['2411321'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2411321","rental_name":"Tent Center Pole Draping CENTER DROP ONLY","images_arr":"{}"};

Tent Center Pole Draping CENTER DROP ONLY

from $250.00

Tent+Center+Pole+Draping+CENTER+DROP+ONLY

https://www.aspartyrental.com/lexington/inventory/tent-options/tent-center-pole-draping-center-drop-only/

2411321

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['1349313'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1349313","rental_name":"Tent Extender Traditional Tent ONLY","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833215\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221349313\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/1700-0417_1_1668009489.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/1700-0417_1_1668009489_big.png\u0022}}"};

Tent Extender Traditional Tent ONLY

from $25.00

Tent+Extender+Traditional+Tent+ONLY

https://www.aspartyrental.com/lexington/inventory/tent-options/tent-extender-traditional-tent-only/

1349313

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['658803'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"658803","rental_name":"10\u0027x10\u0027 Side with Zip Door","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882801\u0022,\u0022rentalimage_createtime\u0022:\u00221673379100\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379100\u0022,\u0022rentalimage_itemid\u0022:\u0022658803\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7x10-sidewalls-zipper-door_rev1_1668009541.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7x10-sidewalls-zipper-door_rev1_1668009541_big.jpg\u0022}}"};

10’x10′ Side with Zip Door

from $10.00

10%27×10%27+Side+with+Zip+Door

https://www.aspartyrental.com/lexington/inventory/tent-options/10×10-side-with-zip-door/

658803

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['658787'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"658787","rental_name":"10\u0027x10\u0027 Tent Sides w\/ Windows","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882803\u0022,\u0022rentalimage_createtime\u0022:\u00221673379101\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379101\u0022,\u0022rentalimage_itemid\u0022:\u0022658787\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (8)_1668009568.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/download (8)_1668009568_big.jpg\u0022}}"};

10’x10′ Tent Sides w/ Windows

from $10.00

10%27×10%27+Tent+Sides+w%2F+Windows

https://www.aspartyrental.com/lexington/inventory/tent-options/10×10-tent-sides-w-windows/

658787

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['292358'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"292358","rental_name":"100,000 BTU Forced Air Heater","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022882811\u0022,\u0022rentalimage_createtime\u0022:\u00221673379107\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221673379107\u0022,\u0022rentalimage_itemid\u0022:\u0022292358\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/6cbcfa45-6839-4dfe-800a-a49545bd7334.028f28f67892d43c0b28cda5a364a2dd_1666892461.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/6cbcfa45-6839-4dfe-800a-a49545bd7334.028f28f67892d43c0b28cda5a364a2dd_1666892461_big.jpeg\u0022}}"};

100,000 BTU Forced Air Heater

from $0.00

100%2C000+BTU+Forced+Air+Heater

https://www.aspartyrental.com/lexington/inventory/tent-options/100000-btu-forced-air-heater/

292358

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['546389'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"546389","rental_name":"40\u0027x8\u0027 HP Cathedral Window Sidewall","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833233\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022546389\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/41Y1xvDou4L_1668009596.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/41Y1xvDou4L_1668009596_big.jpg\u0022}}"};

40’x8′ HP Cathedral Window Sidewall

from $100.00

40%27×8%27+HP+Cathedral+Window+Sidewall

https://www.aspartyrental.com/lexington/inventory/tent-options/40×8-hp-cathedral-window-side-wall/

546389

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['674253'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"674253","rental_name":"4\u0027x\u00274 Duralock Tent Floor","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022644333\u0022,\u0022rentalimage_createtime\u0022:\u00221647463110\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221647463110\u0022,\u0022rentalimage_itemid\u0022:\u0022674253\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tent flooring_544989173.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/tent flooring_544989173_big.jpg\u0022}}"};

4’x’4 Duralock Tent Floor

from $30.00

4%27x%274+Duralock+Tent+Floor

https://www.aspartyrental.com/lexington/inventory/tent-options/4-x-4-duralock-floor/

674253

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['350336'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"350336","rental_name":"4 Globe Light Chandelier","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002287285\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022350336\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5417c2114610ef5814abc87a78469e38.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/7f2c0e7f1248401c3a35de66c449b52f.jpg\u0022}}"};

4 Globe Light Chandelier

from $0.00

4+Globe+Light+Chandelier

https://www.aspartyrental.com/lexington/inventory/tent-options/4-globe-light-chandelier/

350336

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['514943'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"514943","rental_name":"4 Light Candelabra Chandelier","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022113689\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022514943\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4 Light Chandelier_359500.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/4 Light Chandelier_359500_big.JPG\u0022}}"};

4 Light Candelabra Chandelier

from $60.00

4+Light+Candelabra+Chandelier

https://www.aspartyrental.com/lexington/inventory/tent-options/4-light-candelabra-chandelier/

514943

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['235202'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"235202","rental_name":"C7 Tent Light Strands 24ft (Installation Extra)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222172791\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022235202\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/images_1762892492.jpeg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/images_1762892492_big.jpeg\u0022}}"};

C7 Tent Light Strands 24ft (Installation Extra)

from $0.00

C7+Tent+Light+Strands+24ft+%28Installation+Extra%29

https://www.aspartyrental.com/lexington/inventory/tent-options/c7-tent-light-strands-24ft-installation-extra/

235202

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['751507'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"751507","rental_name":"Cafe lighting 48\u0027 Strand (Installation Extra)","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221421127\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022751507\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/cafelighting_1711474906.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/cafelighting_1711474906_big.png\u0022}}"};

Cafe lighting 48′ Strand (Installation Extra)

from $45.00

Cafe+lighting+48%27+Strand+%28Installation+Extra%29

https://www.aspartyrental.com/lexington/inventory/tent-options/cafe-lighting-48-strand-installation-extra/

751507

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:\u00222159581\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\/500lb_-block_1761748087.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/500lb_-block_1761748087_big.png\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/lexington/inventory/tents-frame/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['471882'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"471882","rental_name":"Tent Fans","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022768269\u0022,\u0022rentalimage_createtime\u0022:\u00221659130876\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221659130876\u0022,\u0022rentalimage_itemid\u0022:\u0022471882\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1343_555217.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_1343_555217_big.JPG\u0022}}"};

Tent Fans

from $40.00

Tent+Fans

https://www.aspartyrental.com/lexington/inventory/tent-options/tent-fans/

471882

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['216555'] = {"indoor_outdoor":"","staff":"","electric":"1.00","dimensions":"","rental_id":"216555","rental_name":"Tent Globe Lights 30\u0027 strand","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002253875\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022216555\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/images\/64fda0ed30f0dd590c49ab3c3ac98f7c.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/images\/64fda0ed30f0dd590c49ab3c3ac98f7c.jpg\u0022}}"};

Tent Globe Lights 30′ strand

from $0.00

Tent+Globe+Lights+30%27+strand

https://www.aspartyrental.com/lexington/inventory/tent-options/tent-globe-lights-30-strand/

216555

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['772067'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"772067","rental_name":"Tent Poles Perimeter Draping","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022161109\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022772067\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Draping for Tents 2_495202528.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Draping for Tents 2_495202528_big.jpg\u0022}}"};

Tent Poles Perimeter Draping

from $500.00

Tent+Poles+Perimeter+Draping

https://www.aspartyrental.com/lexington/inventory/tent-options/tent-poles-draped-with-fabric/

772067

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['233426'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"233426","rental_name":"Sidewall Options","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022833235\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022233426\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Sidewall-White2_1668009620.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Sidewall-White2_1668009620_big.jpg\u0022}}"};

Sidewall Options

from $0.00

Sidewall+Options

https://www.aspartyrental.com/lexington/inventory/tent-options/sidewall-options/

233426

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

Ultimate Tent Options for Every Event

A&S Party Rental offers the ultimate tent options for every type of event. Whether you’re planning a wedding, party, or outdoor gathering, our diverse selection of tents ensures you’ll find the perfect option to suit your needs.

From elegant pole tents to sturdy frame tents, we have a variety of styles and sizes available to accommodate events of all sizes and themes. Our tents are designed with versatility and style in mind, allowing you to create the perfect atmosphere for your celebration.

Renting our tent options is simple and convenient. Just browse our inventory, select your desired style and size, and our experienced team will take care of the rest. We’ll deliver and set up the tents at your event location, ensuring everything is ready for a successful and memorable occasion.

Don’t settle for ordinary event tents – choose A&S Party Rental for the ultimate tent options that combine versatility, style, and functionality. Rent now and elevate your event to new heights with our premium tent options.