Advanced Engineering Exhibition

Contact the team

Interested in exhibiting? Want to talk about speaking or visiting the event? Our team are here to help with your enquiries.

I want to visit

Source suppliers & learn from leaders

Free entry. 400+ exhibitors, 6 CPD forums, live demos and networking lounges — all in one venue.

I want to exhibit

Put your brand in front of 9,000 buyers

Meet OEMs, Tier 1s and specifiers face-to-face. Multiple stand formats from shell scheme to flagship.

Simon Farnfield

Ali Farr

Head of Sales
ali.farr@easyfairs.com
+44 (0)20 3196 4244

Jeremy Whittingham

Head of Community & Content 
Jeremy.Whittingham@easyfairs.com
+44 (0)20 3196 4360

Alice Kinchington

Operations Manager
Alice.Kinchington@easyfairs.com
+44 (0)20 3196 4416

Nick Davenport

Sales Manager
nick.davenport@easyfairs.com
+44 (0)20 3196 4268

Nicole Hawkins

Nicole Hawkins

Marketing Manager
nicole.hawkins@easyfairs.com
+44 (0)203 196 4379

Katrina De Martelly

Sales Executive
Katrina.Demartelly@easyfairs.com
+44 (0)20 3196 4343

Oliver Tucknott

Sales Executive 
Oliver.Tucknott@easyfairs.com
+44 (0)20 3196 4276

Cameron Livsey

Community & Content Executive
Cameron.Livsey@easyfairs.com
+44 (0)20 3795 3845

Hannah Trim

Operations Assistant
Hannah.Trim@easyfairs.com
+44 (0)20 3196 4430

Jasmine Negoro

Marketing Executive
Jasmine.Negoro@easyfairs.com
+44 (0)20 3196 4317

Grace Forbes

Grace Forbes

Marketing Intern
Grace.Forbes@easyfairs.com
+44 (0)20 3795 3000

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