Star us on GitHub
Star
Company
Open Source
Mission & Values
Getting Started
Overview
Fullstack Mapping
Backend / Server
Frontend / Client
Fullstack Frameworks
Session Replay
Console Messages
HTML iframe Recording
Identifying Users
Live Mode
Network DevTools
Privacy
Rage Clicks
Recording Network Requests and Responses
Session Sharing
Session Shortcut
Tracking Events
Versioning Sessions
Error Monitoring
Error Sharing
Grouping Errors
Sourcemaps
Versioning Errors
Product Features
Alerts
Analytics
Canvas
Comments
Cross Origin Iframe Recording
Digests
Environments
Frontend Observability
Keyboard Shortcuts
Performance Data
Segments
Session Search
Team Management
User Feedback
Web Vitals
WebGL
Integrations
Amplitude Integration
Clearbit Integration
ClickUp Integration
Discord Integration
Electron Support
Front Plugin
Height Integration
Intercom Integration
Linear Integration
Mixpanel Integration
React.js Integration
Segment Integration
Sentry Integration
Slack Integration
Vercel Integration
highlight.run Changelog
5.0.0
5.0.1
5.1.0
5.1.1
5.1.2
5.1.3
5.1.4
5.1.5
5.1.6
5.1.7
5.1.8
5.2.0
5.2.1
5.2.2
5.2.3
Tips
Content-Security-Policy
Local Development
Monkey Patches
Performance Impact
Proxying Highlight
Session Search Deep Linking
Troubleshooting
Upgrading Highlight
Menu
Docs / Welcome to Highlight / Product Features / User Feedback

User Feedback

Feedback from your user can come at anytime and anywhere in your app. We've made it easy for you to collect feedback that retains context of what the user was doing up until giving feedback.

If you'd like to send Highlight your user's feedback that is shown during the session replay, you can implement your own UI using H.addSessionFeedback() or use the Highlight-provided UI with H.toggleSessionFeedbackModal().

Example Use Case

You've just shipped a new feature, a button that when clicked, shows a random gif. You want to know what users think about the new feature. After the user clicks the button, you show the user a form to collect the feedback. After the feedback is collected, you can send it to Highlight.

H.addSessionFeedback({ verbatim: 'WOW! I really liked the gif I was shown', }) H.addSessionFeedback({ verbatim: 'the gif was meh', userEmail: 'alice@corp.com', }) H.addSessionFeedback({ verbatim: 'i need more gifs!!!!', userEmail: 'bob@corp.com', userName: 'Bob Hyle', })
Copy