How to anonymize sensitive page content?
Sensitive data in forms (e.g. passwords and credit card details) is always anonymized in the recordings. It’s possible to anonymize static content as well, such as surnames and other personal information.
You can add a data-ls-disabled
attribute to an HTML element. This attribute will anonymize the content, e.g. the surname will be replaced with asterisks, like in the example below:

The attribute is applied to all child elements, too. In the case of regular clicks and rage clicks, clicking on an anonymized element won’t reveal the text value.
Anonymize whole text content inside .user-info
:
<div data-ls-disabled class="user-info">
<p>Logged as: <span>John Doe</span></p>
</div>
Anonymize only sensitive element:
<div class="user-info">
<p>Logged as: <span data-ls-disabled>John Doe</span></p>
</div>