Auto-blur sensitive content in requested Jams
Automatically protect sensitive information in customer recordings with smart content blurring.

How it works
The Jam.js snippet automatically detects and blurs sensitive content during recording sessions. When a customer records their issue:
Sensitive elements are blurred in real time as they are recorded, and sensitive information is redacted from the console logs.
Only the blurred version is captured—sensitive data never reaches Jam's servers.
The final Jam shows blurred content exactly as the customer saw it during recording; the console logs will show <redacted> instead of the sensitive data.
What gets blurred: only the elements you want
Applies to: Jams you request from your customers via Intercom or Recording Link
By default, Jam recognizes the same privacy selectors used by popular tools like FullStory, Hotjar, LogRocket, Sentry, and others. If you're already using these tools, your existing privacy setup works automatically with Jam; if not, it's as easy as adding our selector, or providing us with your own.
Setup
Note: Blurring is enabled by default once the snippet is installed.
Blurred content is only supported on sites with verified Jam.js installations.
Follow the Recording Links setup guide [5 mins] before proceeding.
Quickstart
- Want to blur something?
Use Jam.js data attributes to opt in:
Or tell Jam.js about your privacy selectors:
Or if you're using the SDK:
- Want to unblur something?
Use Jam.js data attributes to opt out:
What gets blurred automatically
Jam recognizes privacy selectors from popular session replay and analytics tools. If you already use any of these tools with privacy controls in place, those same elements will be automatically blurred in Jam recordings:
Standard selectors
Jam:
[data-jam-blur]rrweb:
.rr-block,.rr-mask,.rr-ignoreAdditional selectors:
Standard HTML autocomplete attributes
autocomplete="cc-number"- credit card numbersautocomplete="cc-exp"- credit card expirationautocomplete="cc-csc"- credit card security codeautocomplete="tel"- phone numbersautocomplete="email"- email addresses
Common name/id patterns for sensitive fields:
Social Security Numbers:
ssn,social-security,social_security_number,tax-id
Bank Account:
account-number,account_number,routing-number,iban,swift
Credit Cards:
card-number,cardnumber,cc-number,creditcardcvv,cvc,security-code,card-code
Photo IDs/Passports:
passport,passport-number,drivers-license,id-number,national-id
Driver's License:
license-number,drivers-license,dl-number
Session replay tools
FullStory:
.fs-exclude,.fs-mask,.fs-block,.fs-unmask(unblur)Hotjar:
.data-hj-suppress,.data-hj-masked,[data-hj-suppress],[data-hj-masked]LogRocket:
[data-private]Microsoft Clarity:
[data-clarity-mask],[data-clarity-unmask](unblur)Sentry:
.sentry-block,.sentry-mask,[data-sentry-block],[data-sentry-mask]OpenReplay:
[data-openreplay-obscured],[data-openreplay-hidden]Highlight.io:
.highlight-block,.highlight-mask,.highlight-ignoreContentSquare:
[data-cs-mask],[data-cs-encrypt],[data-cs-capture](unblur)Matomo:
[data-matomo-mask]
Analytics tools
Heap:
[data-heap-redact-text],[data-heap-redact-attributes],[data-heap-ignore],.heap-ignoreAmplitude:
[data-amp-mask],[data-amp-unmask](unblur)
Add custom selectors for your product
If you are using @jam.dev/recording-links/sdk: pass your custom selectors into initialize(...) using the blurSelectors key:
If you are using <script type="module" ...> to embed recorder.js and capture.js: use <meta> tags to provide your selectors to Jam.js:
Opt out of blurring for specific elements
If Jam.js is blurring an element it oughtn't, you can use [data-jam-blur="no"] to disable blurring:
Selector priority: Manual opt-out overrides all blurrable matches, whether from a default or custom selector.
Test your setup
Before sharing Recording Links with customers, verify that blurring works correctly:
Create a Recording Link with your verified recording URL selected
Click your own link and start a recording session
Navigate to pages with sensitive content
What to look for:
If sensitive content is blurred during the recording session, it won't appear in the final Jam ✓
If you can see sensitive content clearly while recording, it will appear in the Jam
This real-time preview shows you exactly what will be captured.
Limitations
Content in iframes must be blurred altogether, or not at all—we cannot selectively blur inside an iframe
Flashes of unblurred content may occur during captured pageloads if your UI initializes before Jam.js. If you see flashes of unblurred content when refreshing a page during a recording, try moving Jam.js initialization earlier in your page's execution, or
awaiting it before displaying sensitive data.
Last updated
Was this helpful?