Ignore specific elements
Last updated
Was this helpful?
Last updated
Was this helpful?
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 ()
ust-rec-ignore
Do not record input events on this element ()
ust-rec-mask
Replace all text input in this element with *
()
<!-- Without masking -->
<input type="text" name="email" value="test@x.com" />
<!-- Email displayed in recording will be test@x.com -->
<!-- With masking -->
<input type="text" name="email" value="test@x.com" class="ust-rec-mask" />
<!-- Email displayed in recording will be ********** -->