Data Element for Subclass | Community
Skip to main content
New Participant
March 9, 2020
Solved

Data Element for Subclass

  • March 9, 2020
  • 1 reply
  • 3181 views

Hi there, 

I'm trying to capture the subclass of a html on a row of icons. What would the appropriate DOM attribute be to capture the value in bold red (def) when clicked?

div.buttons.mt-4.mx-auto.abc > div > div.abc.def

div.buttons.mt-4.mx-auto.abc > div > div.abc.ghi

div.buttons.mt-4.mx-auto.abc > div > div.abc.jkl

I've tried doing this previously, and I've managed two outcomes:

1) Captured only the parent class (abc)

2) Successfully capturing both class (abc def) but only the first value (abc def) even though I've clicked the subsequent icons (abc ghi / abc jkl) 

Are there any suggestions on how I can successful tag the buttons either with Launch settings or custom code? Appreciated!

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 Haran_Huang

Under the browser console, use getElementById () or getElementsByName () to get it, and then use custom js in the data element to get storage.

1 reply

Haran_Huang
Haran_HuangAccepted solution
New Participant
March 10, 2020

Under the browser console, use getElementById () or getElementsByName () to get it, and then use custom js in the data element to get storage.