Expand my Community achievements bar.

SOLVED

Tracking iframe form with DTM

Avatar

Level 2

Hi,

I am struggling in implementing some basic tracking on a page with an iframe form. The situation is as follows:

(1) I have a main page with iframe form
e.g.: www.test.com/something
(2) but the actual page where the form is located is e.g.: www.form.com/create

So basically the form on (2) is iframed into page (1). If i want to deploy DTM code so i can fire 3rd party tags and set up Adobe Analytics tracking as well on this form (through a DCR when form is submitted e.g.) how can i implement this?
Adding DTM code (header and footer) to the form page (2) will work?

This has been a tough battle and unfortunately i still do not have a clue on how to get this working

Thanks in advance for support

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi,

Yes, i'll add DTM code on iframe and also on parent page (where the iframe is in).

I'll have results by end of next week - will post them here

Thanks for support

View solution in original post

5 Replies

Avatar

Level 10

AdD the DTM header and footer to the Iframe.

Do let me know if that doesn't work.

Avatar

Correct answer by
Level 2

Hi,

Yes, i'll add DTM code on iframe and also on parent page (where the iframe is in).

I'll have results by end of next week - will post them here

Thanks for support

Avatar

Level 2

Amit_Kumar wrote...

AdD the DTM header and footer to the Iframe.

Do let me know if that doesn't work.

 

Hi,

For anyone who is struggling with this, the approach works.

We just need to add the same DTM code (that we have on parent page) to iframe page/form... and voila.

Thanks for support

Avatar

Level 1

Filipe Beato wrote...

Amit_Kumar wrote...

AdD the DTM header and footer to the Iframe.

Do let me know if that doesn't work.

 

Hi,

For anyone who is struggling with this, the approach works.

We just need to add the same DTM code (that we have on parent page) to iframe page/form... and voila.

Thanks for support

 

 

Won't there be multiple server calls in that case?

Avatar

Level 2

Mukesh Sharma wrote...

Filipe Beato wrote...

Amit_Kumar wrote...

AdD the DTM header and footer to the Iframe.

Do let me know if that doesn't work.

 

Hi,

For anyone who is struggling with this, the approach works.

We just need to add the same DTM code (that we have on parent page) to iframe page/form... and voila.

Thanks for support

 

 

Won't there be multiple server calls in that case?

 


Yes, that's right.

You'll need to suppress one by adding this to your tool custom code, that was kindly provided by Adobe:

var isInIframe = (parent !== window)
if(isInIframe ){
return false; //this will prevent the Adobe Analytics tool to send a pageview image
request
}else{
return true; //this will allow the Adobe Analytics tool to send a pageview image
request
}

p.s: Again this code was provided by Adobe

Hope this helps