The UK's leading advanced engineering event · NEC Birmingham
Sponsorship opportunities
Enhance your brand presence, encourage visitor interest, and position yourself as an engineering leader with our wide array of sponsorship opportunities.
Enhance your brand presence, encourage visitor interest, and position yourself as an engineering leader with our wide array of sponsorship opportunities.
Enhance your brand presence, encourage visitor interest, and position yourself as an engineering leader with our wide array of sponsorship opportunities.
Enhance your brand presence, encourage visitor interest, and position yourself as an engineering leader with our wide array of sponsorship opportunities.
Secure ultimate visibility as our exclusive partner. Position your brand above the competition through premium branding, thought leadership, and high-level data development across the entire event.
Forums/Sessions
Own the conversation in sectors like Aerospace or Automotive. Benefit from stage branding and speaking opportunities to reach a captive audience of decision-makers seeking technical solutions.
Show Registration
Be the first brand visitors see as they arrive. Gain high-impact visibility on signage, registration counters, and confirmation emails to ensure your brand is front-of-mind throughout the event.
Enabling Innovation
Align your brand with the industry’s most exciting breakthroughs. Champion the next generation of engineering talent and gain exclusive exposure to the innovators and press shaping the future.
Networking
Area
Connect with the industry’s elite in a premium environment. Facilitate high-level networking with key decision-makers and influencers from leading brands.
Event App
Gain exclusive in-pocket visibility. As the digital heart of the event, the app offers high engagement through splash screens, banners, and push notifications sent directly to all attendees.
Carpet Tiles
Drive traffic directly to your stand. Place branded tiles in high-traffic areas to boost visibility and strategically guide visitors through the event hall to your specific location.
Lanyard sponsor
Turn every attendee into a walking billboard. Your logo will be worn by every visitor, making it one of the most visible and photographed branding opportunities at the event.
Enquire about Sponsership
document.addEventListener("DOMContentLoaded", function() {
const tab1 = document.getElementById('top-tab-1');
const tab2 = document.getElementById('top-tab-2');
// 1. Read the url parameter marker (?view=exhibitor) directly from the address bar
const urlParams = new URLSearchParams(window.location.search);
let currentView = urlParams.get('view');
// 2. If no URL parameter exists yet, check the page name to determine the default section
const currentPath = window.location.pathname;
// Auto-detect explicit Exhibitor pages (Add any explicit exhibitor slugs here)
if (!currentView) {
if (currentPath.includes('/advanced-engineering-exhibitors') ||
currentPath.includes('/exhibit') ||
currentPath.includes('/sponsorship')) {
currentView = 'exhibitor';
} else {
currentView = 'visitor'; // Default fallback
}
}
// 3. Highlight the correct top tab based on the final decision
if (currentView === 'exhibitor' && tab2) {
if (tab1) tab1.classList.remove('active-tab');
tab2.classList.add('active-tab');
} else if (tab1) {
if (tab2) tab2.classList.remove('active-tab');
tab1.classList.add('active-tab');
}
// 4. Force all navigation links to remember this view state across page reloads
// This dynamically appends ?view=exhibitor or ?view=visitor to links before they are clicked
if (currentView) {
document.querySelectorAll('a').forEach(link => {
const href = link.getAttribute('href');
// Avoid altering external domains, anchor tags, or javascript links
if (href && href.startsWith('http') && href.includes(window.location.hostname) && !href.includes('#')) {
try {
const linkUrl = new URL(href);
linkUrl.searchParams.set('view', currentView);
link.setAttribute('href', linkUrl.toString());
} catch (e) {
// Fail-safe for malformed URL strings
}
} else if (href && href.startsWith('/') && !href.includes('#')) {
// Handle relative root links (e.g., /our-vision/)
const separator = href.includes('?') ? '&' : '?';
link.setAttribute('href', href + separator + 'view=' + currentView);
}
});
}
});