iFrame and postMessage method Help | Community
Skip to main content
February 16, 2021
Solved

iFrame and postMessage method Help

  • February 16, 2021
  • 1 reply
  • 1893 views

Hi all,

i have this problem: in our site we have the a-page with an embedded iFrame.

The iFrame it's under control of the devs and has no Launch script inside.

I want to track some click events that occurs inside that iFrame.

In the Adobe Analytics documentation i found one method to track iFrames- it’s about inserting a code into the page (which I imagine can be done with Launch) and some code in the iFrame. However this method seems specific to trigger a pageview when a user clicks on the iFrame.

 

So, is it possible to track specific events that occurs on click, and save certain informations like we can do with direct calls? 

For example, when the user clicks on the a-element i'd like to have an event with a prop that stores "a-element".

How can i do that?

 

Thank you very much for your time!

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Brian_Johnson_

@ikinet -

postMessage is likely going to be your best option, but your dev team will have to trigger the call from inside the frame. For example, you can have them add an onclick to the links you are interested in that triggers the postMessage event (with the desired event payload). Then, from Launch, you can add an event listener that reacts any time a message comes through, triggering the desired analytics calls.

 

MDN Web Docs details how postMessage works: https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage

1 reply

Brian_Johnson_
Brian_Johnson_Accepted solution
Level 8
February 16, 2021

@ikinet -

postMessage is likely going to be your best option, but your dev team will have to trigger the call from inside the frame. For example, you can have them add an onclick to the links you are interested in that triggers the postMessage event (with the desired event payload). Then, from Launch, you can add an event listener that reacts any time a message comes through, triggering the desired analytics calls.

 

MDN Web Docs details how postMessage works: https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage