What other application information is captured along with User Actions?
- 10 Mar 2023
- 1 Minute To Read
-
Print
-
DarkLight
-
PDF
What other application information is captured along with User Actions?
- Updated On 10 Mar 2023
- 1 Minute To Read
-
Print
-
DarkLight
-
PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Event Attributes enable you to send additional contextual information along with User Actions.
For example, along with the button click event, additional attributes such as the URL, the title of the page where it was clicked, the text on the button, etc. can be captured and sent to give context to the button click event.
The following UI elements can be captured as Event Attributes,
Your title goes here
For more information on the various UI elements, see W3 Schools.
Element Tag | Property captured | Example |
input | value | |
button | innerText | |
span | innerText | |
textArea | value | |
header | innerText | |
div | innerText | |
select | options[selectedIndex].innerText | |
Any other tag apart from the tags mentioned in the table (Default) | innerText | Image and Checkbox |
Your title goes here
Ensure that you capture the innermost div for an element. Capturing the outer div captures the innerText property for all the divs present inside the outer div.
Was this article helpful?