+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time
A - A - A

We've Moved!

Ruth Kirkpatrick    17th September, 2018

After a busy 19 months our growing business has now relocated to a brand new office in the beautiful location of Wymondham in Norfolk.

2018 has seen The Tracing Group go from strength to strength, completing a record number of overseas and gone away tracing projects for our clients. 

 Our new office is in a busy business centre hub where our expanding team can continue to thrive, with new members of the team joining us we now have the space and man power to continue to excel and deliver our client projects.

We have had several changes in the past few months that we haven’t had a chance to keep you up to date on, so look out for our next posts where we can introduce our team!

function submitForm(formId) { const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status == 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }) }