Skip to content

Commit 0000839

Browse files
Update VT FAQ with form edge case
1 parent b7d126f commit 0000839

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/connections/sources/visual-tagger.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,10 @@ However, adding a large number of tags to your site could potentially impact you
260260

261261
Yes. You can track dynamically generated elements like modals (for example) using the Visual Tagger.
262262

263+
### Why does my form submit event not work?
264+
265+
Visual Tagger binds its event listeners to the `document` object. Forms using `stopPropagation()`/`stopImmediatePropagation()` prevent the event from bubbling up causing Visual Tagger to not execute the handlers for emitting track/identify calls. In order for these forms to work with Visual Tagger, you will have to remove `stopPropagation()`/`stopImmediatePropagation()` from your existing form handler.
266+
263267
### Does Visual Tagger have a data layer so that I can make use of data that's not rendered on the page?
264268

265269
Currently, only information that is visually present on the page is available for use in the Visual Tagger.

0 commit comments

Comments
 (0)