Ignore specific elements

For privacy reasons, you can mask or skip specific elements from being recorded by adding a CSS class to the HTML element:

CSS class

Description

ust-rec-block

Do not record this element (full tracking system)

ust-rec-ignore

Do not record input events on this element (both tracking systems)

ust-rec-mask

Replace all text input in this element with * (both tracking systems)

input[type="password"] will be masked by default for both tracking systems.

Example

<!-- Without masking -->
<input type="text" name="email" value="[email protected]" />
<!-- Email displayed in recording will be [email protected] -->

<!-- With masking -->
<input type="text" name="email" value="[email protected]" class="ust-rec-mask" />
<!-- Email displayed in recording will be ********** -->

Last updated

Was this helpful?