Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Does Activity Map track input type="button"?

Avatar

Level 2

One of our site owners is not getting Activity Map data for a dropdown menu. The code for this is: 

<input type="button" value="Go" class="dropDownButton">

Which seems to be valid per this line from Adobe's docs:

"Is this an INPUT tag or SUBMIT button with a value or child text?"

 

It *is* an input tag and has a value. The other part of this is that we have some JS that listens for the click on the input to perform the action. But again, Adobe's docs seem to say that Activity Map should be capturing the clicks. 

 

Any ideas about what might be happening here? Do I have it wrong and Activity Map doesn't capture clicks on an input type="button"?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
4 Replies

Avatar

Community Advisor

Your understanding of Activity Map is correct. It does detect clicks on INPUTs.

But you also mentioned that there's a JS script that listens for clicks on the INPUTs. That script might be interfering with Activity Map's detection, e.g. if your script uses "preventDefault()".

Avatar

Level 2
The script does not use preventDefault(), which was a surprise at first, but I guess an input with type="button" isn't the same as type="submit" or a button tag.

Avatar

Level 1

As stated here: https://experienceleague.adobe.com/docs/analytics/analyze/activity-map/link-tracking/link-tracking-f...

 

"Button tags with the attribute type=“button” are not considered to be links by AppMeasurement. Consider removing type=“button” on the button tags and adding role=“button” or submit=“button” instead."

Avatar

Correct answer by
Community Advisor