Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clicks within iframes are not recorded. #164

Open
mattiaskagstrom opened this issue Mar 23, 2021 · 1 comment
Open

Clicks within iframes are not recorded. #164

mattiaskagstrom opened this issue Mar 23, 2021 · 1 comment
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@mattiaskagstrom
Copy link

In our webapp we have some legacy code running in iframes, and when clicking in the iframe nothing is recorded.

@adam-stover adam-stover added enhancement New feature or request help wanted Extra attention is needed labels Jun 2, 2021
@angelfraga
Copy link

angelfraga commented Jun 10, 2021

Hi, I am facing a similar issue, I did not get deep in the extension workflow but I ve noticed there are two method for attaching events and removing them.

function addDOMListeners(): void {

function removeDOMListeners(): void {

Do you think we could subscribe to the "document" tree modification in order to detect if some IFRAME was added and call these methods with the found IFRAMES ?

something like that:

document.addEventListener('DOMNodeInserted', event => event );

document.addEventListener('DOMNodeRemoved', event => event );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

3 participants