Articles on: Developers

How do I prevent elements from being tracked by MagicBrowse?

MagicBrowse is built with privacy in mind and inputs are automatically hidden. You want to hide some elements to be tracked? here is how to do this


Edit your HTML Page


We build a `data-browsing-ignore` you can add to prevent an elements from being tracked by MagicBrowse.


Example :


<html>    <p>Welcome to AcmeInc.</p>    <p> Here is your password: VERY_SENSITIVE_DATA</p></html>


Then you can implement the `data-browsing-ignore` attribute


<html>    <p>Welcome to AcmeInc.</p>    <p data-browsing-ignore> Here is your password: VERY_SENSITIVE_DATA</p></html>

Updated on: 31/07/2026

Was this article helpful?

Share your feedback

Cancel

Thank you!