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: 24/02/2025
Thank you!