Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. In your form, add the element website data, this article will provide you with more information.

  2. There are 2 ways to add datalayersdata layers:

2a. Often you do not need all the information in a data layer. You could then use the following method to select data from a specific key:

...

Do note, this method will only return the first value found. If there are more entries in the data layer with an ecommerce key, these will not be returned.

2b. The second method gives you the possibility to return more values. You will need to use an arrayfilter array filter function:

...

Code Block
dataLayer.filter(item => item.event === "timing_complete")

...