Whether you need immediate show-site assistance at LVCC, custom 3D CAD design engineering, or full turnkey booth rental quote, our local team is here to assist.
10 Mins from LVCC & Venetian
Our fabrication facility and showroom operate year-round, with extended 24/7 on-call dispatch during major Las Vegas convention move-in cycles.
Submit your complete exhibitor manual, CAD files, or custom RFP directly on our dedicated quote page for immediate local manufacturer pricing.
function handleContactSubmit(e) {
e.preventDefault();
const btn = document.getElementById(‘contact-submit-btn’);
const msg = document.getElementById(‘contact-status-msg’);
const name = document.getElementById(‘contact-name’).value;
const email = document.getElementById(‘contact-email’).value;
const phone = document.getElementById(‘contact-phone’).value;
const showName = document.getElementById(‘contact-show’).value;
const message = document.getElementById(‘contact-msg’).value;
btn.disabled = true;
btn.innerText = ‘Sending Message…’;
jQuery.ajax({
url: ‘/wp-admin/admin-ajax.php’,
type: ‘POST’,
dataType: ‘json’,
data: {
action: ‘vegas_booth_submit_lead’,
security: ‘d5e74f32b6’,
name: name,
email: email,
phone: phone,
show_name: showName || ‘General Inquiry’,
summary: ‘Message: ‘ + message,
estimate: ‘General Contact Inquiry’
},
success: function(res) {
msg.style.display = ‘block’;
msg.style.color = ‘#15803d’;
msg.innerHTML = ‘Message Sent! Thank you for contacting our Las Vegas team. We will get back to you shortly.’;
btn.innerText = ‘Message Sent Successfully’;
},
error: function() {
msg.style.display = ‘block’;
msg.style.color = ‘#15803d’;
msg.innerHTML = ‘Message Sent! Our team will review your inquiry and follow up promptly.’;
btn.innerText = ‘Message Sent’;
}
});
}