Tracking application form signups

When someone applies using your application form, you may want to track a conversion for that in Facebook or Google analytics etc.

If you are using the application form as an iframe within a page on your website, you can be notified whenever someone submits the form. However, you will need some familiarity with Javascript to enable this. You will need to use code similar to the following on the page which has the iframe:

window.addEventListener('message', (event) => {
  if (
    event &&
    event.origin.includes('.brandchamp.') &&
    event.data &&
    event.data.type === 'applicant-applied'
  ) {
    console.log('APPLICANT APPLIED:', event.data.email);
  }
});
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us