Available for Observe and Ask with the
,
or
plans. See the Hotjar pricing page for plans and pricing.
Events are changes or actions on your site such as clicks, scrolls, and typing. These events can be used with Hotjar to trigger session capture, make Feedback widgets or Surveys appear, or to filter your collected data to find even more insights. This article will look at what’s involved in setting up events with Hotjar using our Events API.
For an overview of Events and how to use them, see our article on What are Events?
- Step 1 - Identify the main goals you have for your site.
- Step 2 - Decide what events support these goals.
- Step 3 - Implement the Event API code on your site.
- Step 4 - After implementing the Event API code, start using Hotjar Events.
Identify the main goals you have for your site.
Depending on your site, your current goals could include increasing conversions, reducing errors, increasing newsletter subscriptions, or tracking an A/B test. Here are some everyday use cases for Events to help get you started identifying the goals you’d like to focus on:
- Filter Heatmaps to compare the performance of a page variant for A/B testing.
- Filter Recordings where users encountered an error to help find and resolve bugs or common UX issues.
- Trigger a Survey for users who unsubscribe, asking them how you could improve the newsletter.
For more use cases, see our article on What are Events?
Decide what events support these goals.
Specific events that are happening (or not happening) on your site can be used to support your goals identified in Step 1. By listing out these events before moving to the next step, you’ll know where to implement the Event API code. Some examples of events on your site include:
- A click event on a specific button or link.
- An error is triggered.
- A page variant is loaded.
You’ll then be able to tie the first two steps together to help with implementing the Event API code in the next step. For example, your goal and event to support the goal could be: “Pass an event to Hotjar when an error is triggered (the event), so that I can filter my Hotjar Recordings by that error event to find and resolve bugs or common UX issues (the goal).”
Implement the Event API code on your site.
Use Google Tag Manager to send Events to Hotjar
Events can be sent to Hotjar using Google Tag Manager. You'll find a step-by-step guide to setting this up in our article on How to send Events to Hotjar with Google Tag Manager.
After working out your goals and the events to support these goals, the next step is implementing the Event API code on your site using the Events API Reference Guide. The Events feature in Hotjar is available and pre-enabled on sites with one of the following plans: Observe or Ask Plus, Business, or Scale. However, some custom code will need to be added to your site to start sending events to Hotjar. Depending on your level of technical expertise, you may need the help of a web developer to write the additional code required.
To help implement the Event API code, we’ve provided further information in our Events API Reference Guide. A snippet of code is available below as a template to help get started. However, on its own, this template is not enough to send events from your site to Hotjar and it will need to be customized to your site and goals.
document.querySelector('#my-button')
.addEventListener('click', () => hj('event', ['clicked_cta']));
After implementing the Event API code, start using Hotjar Events.
After implementing the Event API code required to send events to Hotjar, you'll begin seeing the events available for use in Hotjar’s tools. From here, you can currently do the following with Hotjar Events:
- Filter Recordings by Events.
- Filter Heatmaps by Events.
- Create a Recording Segment that includes the filtered event.
- Target Surveys and Feedback widgets to trigger based on Events.
- Start session capture based on the triggering of Events.