In which scenarios, or what type of fields, would you want to tag a specific field | Community
Skip to main content
September 30, 2022
Solved

In which scenarios, or what type of fields, would you want to tag a specific field

  • September 30, 2022
  • 1 reply
  • 803 views

We have a sales process where we tag each PAGE so we can see when a user dropped off the journey. What I want to know is, in which scenarios would it be useful to tag a specific FIELD? Do you track any FIELDS on your website/application? Why? What is the use case?

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 yuhuisg

I'd say that it depends on what business question you want answers for. For example: (I assume you're referring to form fields, when you say "field")

  • Which required fields are users interacting with?
  • What was the last field that users interacted with before submitting the form?
  • Which fields are causing the form to fail to submit?
  • Which optional fields are users interacting with?
  • etc.

1 reply

yuhuisg
Community Advisor
yuhuisgCommunity AdvisorAccepted solution
Community Advisor
September 30, 2022

I'd say that it depends on what business question you want answers for. For example: (I assume you're referring to form fields, when you say "field")

  • Which required fields are users interacting with?
  • What was the last field that users interacted with before submitting the form?
  • Which fields are causing the form to fail to submit?
  • Which optional fields are users interacting with?
  • etc.
Jennifer_Dungan
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
September 30, 2022

Other considerations on form fields.. what is the actual "trigger" for the tracking and does that fire each time or only once?

 

Triggers could be "onfocus" (in or out), or "keypress", etc.... I would recommend against keypress (unless you only track the first keypress - otherwise you will be sending way too much data). 

 

Looking at focus could have a similar behaviour.. as users would go back into fields to make changes....

 

You really need to understand what kind of data you are trying to pull and report on, and also look at how many server calls this tracking will generate... you don't want to use up your server call allocation, then have to pay overage charges; then find out the data you are collecting isn't being used, or isn't answering the needs of your business.

 

Another option could be to collect interaction data (store in an object) while the form is open about what fields are being interacted with, then pass that information as part of the form submit. It would keep your server calls down, but get you some basic info about the fields.... but again, this solution may not work for your needs; which must be evaluated first before trying to create a solution.