items
Set Event Date

Chargers for Rent

317642

Table charger rentals in Cincinnati, Ohio from A&S Party Rental — ideal for weddings, company picnics, and family celebrations.

Professional delivery to Cincinnati Ohio, Mason Ohio, West Chester Ohio, Loveland Ohio and surrounding areas. Please submit a quote or contact us to be sure we service your area.

Charger Rentals in Cincinnati, Ohio

Elevate your tables with stunning table chargers from A&S Party Rental in Cincinnati! Perfect for weddings, galas, and family gatherings, our chargers add style, elegance, and a polished look to every place setting.

Choose from a variety of colors, finishes, and designs to complement your table linens, dinnerware, and overall décor. Our chargers are durable, reusable, and easy to set up, making your table arrangements effortless and beautiful.

Whether it’s a wedding reception, company picnic, or formal dinner, our table chargers make every meal feel special and memorable.

Set the table in style—contact A&S Party Rental today to reserve your table chargers and enhance your Cincinnati event!

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['3094255'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"3094255","rental_name":"Black Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222179945\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00223094255\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-18 11.29.13 AM_1763483410.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-18 11.29.13 AM_1763483410_big.png\u0022}}"};

Black Charger

from $0.00

Black+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/black-charger/

3094255

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['2121195'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2121195","rental_name":"Black Dot Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221255677\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222121195\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/980f4b6a-588f-45be-8e55-b0f35310ff45_1702647062.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/980f4b6a-588f-45be-8e55-b0f35310ff45_1702647062_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u00221255679\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222121195\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/blackcharger_1702647062.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/blackcharger_1702647062_big.jpg\u0022}}"};

Black Dot Charger

from $1.50

Black+Dot+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/black-dot-charger/

2121195

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['1667525'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1667525","rental_name":"Black Rope Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022832963\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221667525\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/527804_19_1668003150.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/527804_19_1668003150_big.jpg\u0022}}"};

Black Rope Charger Plate

from $1.50

Black+Rope+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/black-charger-plate/

1667525

Limited

Dropdown

10

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['585261'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"585261","rental_name":"Blush\/Rose Reef Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022754811\u0022,\u0022rentalimage_createtime\u0022:\u00221657659487\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221657659487\u0022,\u0022rentalimage_itemid\u0022:\u0022585261\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Blush-Rose Reef Charger Plate_928809320.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Blush-Rose Reef Charger Plate_928809320_big.jpg\u0022}}"};

Blush/Rose Reef Charger Plate

from $3.50

Blush%2FRose+Reef+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/blush-rose-reef-charger-plate/

585261

Limited

Textbox

10

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['370090'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370090","rental_name":"Burlap Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002290003\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370090\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/a368810688178f8721fef6ace34cfe59.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5f87b97ccd7d01792e716952406c8023.jpg\u0022}}"};

Burlap Charger Plate

from $1.50

Burlap+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/burlap-charger-plate/

370090

Limited

Textbox

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['2426915'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2426915","rental_name":"Clear Glass Beaded Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221572735\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222426915\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/clearglassbeaded_1722446853.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/clearglassbeaded_1722446853_big.png\u0022}}"};

Clear Glass Beaded Charger Plate

from $5.95

Clear+Glass+Beaded+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/clear-glass-beaded-charger-plate/

2426915

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['970317'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"970317","rental_name":"Glamour Glass Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022514141\u0022,\u0022rentalimage_createtime\u0022:\u00221632855626\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221632855626\u0022,\u0022rentalimage_itemid\u0022:\u0022970317\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_04891_616628432.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_04891_616628432_big.jpg\u0022}}"};

Glamour Glass Charger Plate

from $4.50

Glamour+Glass+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/glamour-glass-charger-plate/

970317

Limited

Dropdown

10

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['1866351'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1866351","rental_name":"Glass Clear\/Silver Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221036553\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221866351\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_4055 - Edited_1683137530.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_4055 - Edited_1683137530_big.png\u0022}}"};

Glass Clear/Silver Charger

from $4.50

Glass+Clear%2FSilver+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/glass-clear-silver-charger/

1866351

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['919873'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"919873","rental_name":"Gold Acrylic Reef Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022508525\u0022,\u0022rentalimage_createtime\u0022:\u00221631719157\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221631719157\u0022,\u0022rentalimage_itemid\u0022:\u0022919873\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold Acrylic Reef Charger Plate_484692739.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold Acrylic Reef Charger Plate_484692739_big.jpg\u0022}}"};

Gold Acrylic Reef Charger Plate

from $2.50

Gold+Acrylic+Reef+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-acrylic-reef-charger-plate/

919873

Limited

Textbox

10

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['1552603'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1552603","rental_name":"Gold Charger Plate w\/Dot Trim","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820667\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221552603\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/81T4w6B-NSL_1666797105.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/81T4w6B-NSL_1666797105_big.jpg\u0022}}"};

Gold Charger Plate w/Dot Trim

from $1.50

Gold+Charger+Plate+w%2FDot+Trim

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-charger-plate-w-dot-trim/

1552603

Limited

Dropdown

10

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['370182'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370182","rental_name":"Gold Charger Plate w\/Rope Trim","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022811321\u0022,\u0022rentalimage_createtime\u0022:\u00221665506739\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221665506739\u0022,\u0022rentalimage_itemid\u0022:\u0022370182\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c824c2b8851fb7a16e40aa3150b4bdf7.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/c9287f44749943a0ed0fad8b4042107f.jpg\u0022}}"};

Gold Charger Plate w/Rope Trim

from $1.50

Gold+Charger+Plate+w%2FRope+Trim

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-charger-plate-w-rope-trim/

370182

Limited

Textbox

10

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['370080'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370080","rental_name":"Gold Glass Beaded Clear Charger Plate\/Not for customer pick ","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221045971\u0022,\u0022rentalimage_createtime\u0022:\u00221683833512\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221683833512\u0022,\u0022rentalimage_itemid\u0022:\u0022370080\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold Beaded Charger_67014530.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold Beaded Charger_67014530_big.png\u0022}}"};

Gold Glass Beaded Clear Charger Plate/Not for customer pick

from $5.95

Gold+Glass+Beaded+Clear+Charger+Plate%2FNot+for+customer+pick+

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-beaded-clear-charger-plate/

370080

Limited

Textbox

10

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['501239'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"501239","rental_name":"Gold Hammered Chargers","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022111497\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022501239\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2051_854574.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2051_854574_big.JPG\u0022}}"};

Gold Hammered Chargers

from $2.50

Gold+Hammered+Chargers

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-hammered-chargers/

501239

Limited

Textbox

10

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['961783'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"961783","rental_name":"Gold Peacock Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022552661\u0022,\u0022rentalimage_createtime\u0022:\u00221639760779\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221639760779\u0022,\u0022rentalimage_itemid\u0022:\u0022961783\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold Peacock Charger Plate_305392394.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Gold Peacock Charger Plate_305392394_big.jpg\u0022}}"};

Gold Peacock Charger

from $2.50

Gold+Peacock+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-peacock-charger/

961783

Limited

Textbox

10

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['370070'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370070","rental_name":"Gold Square Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022765047\u0022,\u0022rentalimage_createtime\u0022:\u00221658858480\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221658858480\u0022,\u0022rentalimage_itemid\u0022:\u0022370070\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/51380738b194df6043ce6b92e2aa3880.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/a3a8017bc4cac3e25a9eab5351f2dede.jpg\u0022}}"};

Gold Square Charger Plate

from $1.50

Gold+Square+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-square-charger-plate/

370070

Limited

Textbox

10

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['1866383'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1866383","rental_name":"Grey Faux Wood Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221036583\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221866383\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_4061 - Edited_1683138046.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_4061 - Edited_1683138046_big.png\u0022}}"};

Grey Faux Wood Charger

from $1.50

Grey+Faux+Wood+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/grey-faux-wood-charger/

1866383

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['965173'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"965173","rental_name":"Ivory Antique Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022190177\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022965173\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Ivory Antique Charger Plate_888168786.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Ivory Antique Charger Plate_888168786_big.jpg\u0022}}"};

Ivory Antique Charger Plate

from $2.50

Ivory+Antique+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/ivory-antique-charger-plate/

965173

Limited

Textbox

10

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['437845'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"437845","rental_name":"Mahogany Dot Charger Plates","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002298971\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022437845\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/13 brown charger_507124562.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/Ultrasound\/images\/13 brown charger_507124562_big.jpg\u0022}}"};

Mahogany Dot Charger Plates

from $1.50

Mahogany+Dot+Charger+Plates

https://www.aspartyrental.com/cincinnati/inventory/chargers/mahogany-dot-charger-plates/

437845

Limited

Textbox

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['1809129'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1809129","rental_name":"Rattan Natural Honey Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976685\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221809129\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Rattan-Honey2-600x600 - Edited - Edited_1679078550.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Rattan-Honey2-600x600 - Edited - Edited_1679078550_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022976687\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221809129\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shots-March-2022_08 - Edited_1679078550.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shots-March-2022_08 - Edited_1679078550_big.png\u0022}}"};

Rattan Natural Honey Charger

from $5.25

Rattan+Natural+Honey+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/rattan-natural-honey-charger/

1809129

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['1809131'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1809131","rental_name":"Rattan White Wash Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022976689\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221809131\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Rattan-Charger_Whitewash2-600x600 - Edited - Edited_1679078614.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Rattan-Charger_Whitewash2-600x600 - Edited - Edited_1679078614_big.png\u0022},\u00221\u0022:{\u0022rentalimage_id\u0022:\u0022976691\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221809131\u0022,\u0022rentalimage_order\u0022:\u00221\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shots-March-2022_09 - Edited_1679078614.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Creative-Shots-March-2022_09 - Edited_1679078614_big.png\u0022}}"};

Rattan White Wash Charger

from $5.25

Rattan+White+Wash+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/rattan-white-wash-charger/

1809131

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['2264249'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"2264249","rental_name":"Rose Gold Glitter Edge Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221415977\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00222264249\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/A1SKVC5B3BL._AC_SX679__1711125911.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/A1SKVC5B3BL._AC_SX679__1711125911_big.jpg\u0022}}"};

Rose Gold Glitter Edge Charger

from $5.00

Rose+Gold+Glitter+Edge+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/rose-gold-glitter-edge-charger/

2264249

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['370084'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370084","rental_name":"Rustic Ivory Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002289997\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370084\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/5cf07746eea95418a112664279a63c01.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/6f2d06ffcaaab436ce42fe6dc2a68776.jpg\u0022}}"};

Rustic Ivory Charger Plate

from $1.50

Rustic+Ivory+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/rustic-ivory-charger-plate/

370084

Limited

Textbox

10

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['437847'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"437847","rental_name":"Silver Charger Plates","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222179929\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022437847\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-18 11.17.39 AM_1763482689.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-18 11.17.39 AM_1763482689_big.png\u0022}}"};

Silver Charger Plates

from $1.50

Silver+Charger+Plates

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-charger-plates/

437847

Limited

Textbox

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['439125'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"439125","rental_name":"Silver Dot Chargers","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00222179927\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022439125\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-18 11.16.30 AM_1763482606.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Screenshot 2025-11-18 11.16.30 AM_1763482606_big.png\u0022}}"};

Silver Dot Chargers

from $1.00

Silver+Dot+Chargers

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-dot-chargers/

439125

Limited

Textbox

10

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['812879'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"812879","rental_name":"Silver Glass Beaded Charger Plates","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022737297\u0022,\u0022rentalimage_createtime\u0022:\u00221655478565\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221655478565\u0022,\u0022rentalimage_itemid\u0022:\u0022812879\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Silver Beaded Charger Plate_89094448.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Silver Beaded Charger Plate_89094448_big.jpg\u0022}}"};

Silver Glass Beaded Charger Plates

from $5.95

Silver+Glass+Beaded+Charger+Plates

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-beaded-charger-plates/

812879

Limited

Textbox

10

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['1866349'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"1866349","rental_name":"Silver Glass Sunburst Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u00221036545\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u00221866349\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/358b8aa6-1053-4f75-b3db-f893a5a0b3b8_1683137438.png\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/358b8aa6-1053-4f75-b3db-f893a5a0b3b8_1683137438_big.png\u0022}}"};

Silver Glass Sunburst Charger

from $4.50

Silver+Glass+Sunburst+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-glass-sunburst-charger/

1866349

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['501237'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"501237","rental_name":"Silver Hammered Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022111495\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022501237\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2050_199903.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_2050_199903_big.JPG\u0022}}"};

Silver Hammered Charger

from $2.50

Silver+Hammered+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-hammered-charger/

501237

Limited

Textbox

10

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['523699'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"523699","rental_name":"Silver Majestic Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022118291\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022523699\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/silver majestic charger_800846.JPG\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/silver majestic charger_800846_big.JPG\u0022}}"};

Silver Majestic Charger Plate

from $4.50

Silver+Majestic+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-majestic-charger-plate/

523699

Limited

Textbox

10

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['961785'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"961785","rental_name":"Silver Peacock Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022728573\u0022,\u0022rentalimage_createtime\u0022:\u00221654619769\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221654619769\u0022,\u0022rentalimage_itemid\u0022:\u0022961785\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Silver Peacock Charger Plate_90283796.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/Silver Peacock Charger Plate_90283796_big.jpg\u0022}}"};

Silver Peacock Charger

from $2.50

Silver+Peacock+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-peacock-charger/

961785

Limited

Textbox

10

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['370074'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370074","rental_name":"Silver Roped Edge Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022796115\u0022,\u0022rentalimage_createtime\u0022:\u00221663348323\u0022,\u0022rentalimage_modifiedtime\u0022:\u00221663348323\u0022,\u0022rentalimage_itemid\u0022:\u0022370074\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/SIlverCharger_540389.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/SIlverCharger_540389_big.jpg\u0022}}"};

Silver Roped Edge Charger Plate

from $1.50

Silver+Roped+Edge+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-charger-plate/

370074

Limited

Textbox

10

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['370076'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370076","rental_name":"Silver Square Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002289989\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370076\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/0342d518cb961467db240c5951e09b74.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/0fd5900c79226dffd112ab9390ac8d07.jpg\u0022}}"};

Silver Square Charger Plate

from $1.50

Silver+Square+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-square-charger-plate/

370076

Limited

Textbox

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['370072'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370072","rental_name":"Silver Vintage Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002289985\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370072\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/81920fe938850c1f2dfd3e13968197c9.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/d45b4826feafa94f5aff5cbaef3f21ff.jpg\u0022}}"};

Silver Vintage Charger Plate

from $2.25

Silver+Vintage+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/silver-vintage-charger-plate/

370072

Limited

Textbox

10

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['539609'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"539609","rental_name":"White Barouque Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022120607\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022539609\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_4066_257738.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/IMG_4066_257738_big.jpg\u0022}}"};

White Barouque Charger

from $2.50

White+Barouque+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/white-barouque-charger/

539609

Limited

Textbox

10

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['370086'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"370086","rental_name":"White Vintage Charger Plate","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u002289999\u0022,\u0022rentalimage_createtime\u0022:\u00220\u0022,\u0022rentalimage_modifiedtime\u0022:\u00220\u0022,\u0022rentalimage_itemid\u0022:\u0022370086\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/0aa10862fc7466b0800147d6c1b65b9d.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/9ac57508d723895798a22eafe4b150a2.jpg\u0022}}"};

White Vintage Charger Plate

from $2.25

White+Vintage+Charger+Plate

https://www.aspartyrental.com/cincinnati/inventory/chargers/white-vintage-charger-plate/

370086

Limited

Textbox

10

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['712895'] = {"indoor_outdoor":"","staff":"","electric":"0.00","dimensions":"","rental_id":"712895","rental_name":"Gold Fantastic Charger","images_arr":"{\u00220\u0022:{\u0022rentalimage_id\u0022:\u0022820669\u0022,\u0022rentalimage_createtime\u0022:null,\u0022rentalimage_modifiedtime\u0022:null,\u0022rentalimage_itemid\u0022:\u0022712895\u0022,\u0022rentalimage_order\u0022:\u00220\u0022,\u0022rentalimage_imageloc\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LuxeGoldClearCharger-White_1666797153.jpg\u0022,\u0022rentalimage_imagelocbig\u0022:\u0022https:\/\/rental.software\/users\/reservations@asplayzone\/images\/LuxeGoldClearCharger-White_1666797153_big.jpg\u0022}}"};

Gold Fantastic Charger

from $2.50

Gold+Fantastic+Charger

https://www.aspartyrental.com/cincinnati/inventory/chargers/gold-fantastic-charger/

712895

Limited

Textbox

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

Elevate Your Table Settings with Elegant Chargers

Add a touch of sophistication to your Cincinnati event with our exquisite collection of chargers available for rent. At As Party Rental, we offer a variety of styles and designs to enhance your table settings and create a memorable dining experience.

Explore Our Collection

From classic to contemporary, our chargers are meticulously selected to complement any theme or decor. Browse through our inventory to find the perfect chargers to elevate your event:

  • Gold Chargers: Add a luxurious touch with our gold charger plates.
  • Silver Chargers: Create an elegant ambiance with our silver charger plates.
  • Acrylic Chargers: For a modern look, explore our collection of acrylic charger plates.
  • Rustic Chargers: Bring a touch of charm to your event with our rustic charger plates.

Why Choose Us?

  • Quality Assurance: Our chargers are of the highest quality, ensuring durability and visual appeal.
  • Wide Selection: With a diverse range of styles and designs, you’ll find the perfect chargers to suit your taste and theme.
  • Expert Assistance: Our knowledgeable staff is here to help you choose the ideal chargers for your event.
  • Convenience: Enjoy hassle-free rental services with flexible pickup and delivery options available.

Reserve Your