By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
Money MindHubMoney MindHubMoney MindHub
  • Home
  • Investing
  • Business
  • Personal Finance
  • Marketing
  • Banking
  • Mining
  • Retirement
Reading: Optimizing Interaction To Next Paint: A Step-By-Step Guide
Share
Notification Show More
Money MindHubMoney MindHub
Search
  • Home -Money
  • Investing
  • Business
  • Personal Finance
  • Marketing
  • Banking
  • Mining
  • Retirement
© 2024 All Rights Reserved | Powered By moneymindhub
Money MindHub > Marketing > Optimizing Interaction To Next Paint: A Step-By-Step Guide
Marketing

Optimizing Interaction To Next Paint: A Step-By-Step Guide

MoneyMindHub November 22, 2024
Share
14 Min Read
Optimizing Interaction To Next Paint (INP): A Step-By-Step Guide
SHARE

This post was sponsored by DebugBear. The opinions expressed in this article are the sponsor’s own.

Keeping your website fast is important for user experience and SEO.

The Core Web Vitals initiative by Google provides a set of metrics to help you understand the performance of your website.

The three Core Web Vitals metrics are:

This post focuses on the recently introduced INP metric and what you can do to improve it.

In This Guide

  1. 1. How Is Interaction To Next Paint Measured?
  2. 2. How To Identify & Fix Slow INP Times
  3. 3. How To Investigate High Input Delay
  4. 4. How To Investigate High Presentation Delay
  5. 5. Get The Data You Need To Improve Interaction To Next Paint

How Is Interaction To Next Paint Measured?

INP measures how quickly your website responds to user interactions – for example, a click on a button. More specifically, INP measures the time in milliseconds between the user input and when the browser has finished processing the interaction and is ready to display any visual updates on the page.

Your website needs to complete this process in under 200 milliseconds to get a “Good” score. Values over half a second are considered “Poor”. A poor score in a Core Web Vitals metric can negatively impact your search engine rankings.

Google collects INP data from real visitors on your website as part of the Chrome User Experience Report (CrUX). This CrUX data is what ultimately impacts rankings.

How To Identify & Fix Slow INP Times

The factors causing poor Interaction to Next Paint can often be complex and hard to figure out. Follow this step-by-step guide to understand slow interactions on your website and find potential optimizations.

1. How To Identify A Page With Slow INP Times

Different pages on your website will have different Core Web Vitals scores. So you need to identify a slow page and then investigate what’s causing it to be slow.

Using Google Search Console

One easy way to check your INP scores is using the Core Web Vitals section in Google Search Console, which reports data based on the Google CrUX data we’ve discussed before.

By default, page URLs are grouped into URL groups that cover many different pages. Be careful here – not all pages might have the problem that Google is reporting. Instead, click on each URL group to see if URL-specific data is available for some pages and then focus on those.

Using A Real-User Monitoring (RUM) Service

Google won’t report Core Web Vitals data for every page on your website, and it only provides the raw measurements without any details to help you understand and fix the issues. To get that you can use a real-user monitoring tool like DebugBear.

Real-user monitoring works by installing an analytics snippet on your website that measures how fast your website is for your visitors. Once that’s set up you’ll have access to an Interaction to Next Paint dashboard like this:

You can identify pages you want to optimize in the list, hover over the URL, and click the funnel icon to look at data for that specific page only.

2. Figure Out What Element Interactions Are Slow

Different visitors on the same page will have different experiences. A lot of that depends on how they interact with the page: if they click on a background image there’s no risk of the page suddenly freezing, but if they click on a button that starts some heavy processing then that’s more likely. And users in that second scenario will experience much higher INP.

See also  How To Stay At Hotels For Free In 2024

To help with that, RUM data provides a breakdown of what page elements users interacted with and how big the interaction delays were.

The screenshot above shows different INP interactions sorted by how frequent these user interactions are. To make optimizations as easy as possible you’ll want to focus on a slow interaction that affects many users.

In DebugBear, you can click on the page element to add it to your filters and continue your investigation.

3. Identify What INP Component Contributes The Most To Slow Interactions

INP delays can be broken down into three different components:

  • Input Delay: Background code that blocks the interaction from being processed.
  • Processing Time: The time spent directly handling the interaction.
  • Presentation Delay: Displaying the visual updates to the screen.

You should focus on which INP component is the biggest contributor to the slow INP time, and ensure you keep that in mind during your investigation.

In this scenario, Processing Time is the biggest contributor to the slow INP time for the set of pages you’re looking at, but you need to dig deeper to understand why.

High processing time indicates that there is code intercepting the user interaction and running slow performing code. If instead you saw a high input delay, that suggests that there are background tasks blocking the interaction from being processed, for example due to third-party scripts.

4. Check Which Scripts Are Contributing To Slow INP

Sometimes browsers report specific scripts that are contributing to a slow interaction. Your website likely contains both first-party and third-party scripts, both of which can contribute to slow INP times.

A RUM tool like DebugBear can collect and surface this data. The main thing you want to look at is whether you mostly see your own website code or code from third parties.

Tip: When you see a script, or source code function marked as “N/A”, this can indicate that the script comes from a different origin and has additional security restrictions that prevent RUM tools from capturing more detailed information.

This now begins to tell a story: it appears that analytics/third-party scripts are the biggest contributors to the slow INP times.

See also  BeReal launches US advertising platform led by former TikTok exec

5. Identify Why Those Scripts Are Running

At this point, you now have a strong suspicion that most of the INP delay, at least on the pages and elements you’re looking at, is due to third-party scripts. But how can you tell whether those are general tracking scripts or if they actually have a role in handling the interaction?

DebugBear offers a breakdown that helps see why the code is running, called the INP Primary Script Invoker breakdown. That’s a bit of a mouthful – multiple different scripts can be involved in slowing down an interaction, and here you just see the biggest contributor. The “Invoker” is just a value that the browser reports about what caused this code to run.

The following invoker names are examples of page-wide event handlers:

  • onclick
  • onmousedown
  • onpointerup

You can see those a lot in the screenshot above, which tells you that the analytics script is tracking clicks anywhere on the page.

In contrast, if you saw invoker names like these that would indicate event handlers for a specific element on the page:

  • .load_more.onclick
  • #logo.onclick

6. Review Specific Page Views

A lot of the data you’ve seen so far is aggregated. It’s now time to look at the individual INP events, to form a definitive conclusion about what’s causing slow INP in this example.

Real user monitoring tools like DebugBear generally offer a way to review specific user experiences. For example, you can see what browser they used, how big their screen is, and what element led to the slowest interaction.

As mentioned before, multiple scripts can contribute to overall slow INP. The INP Scripts section shows you the scripts that were run during the INP interaction:

You can review each of these scripts in more detail to understand why they run and what’s causing them to take longer to finish.

7. Use The DevTools Profiler For More Information

Real user monitoring tools have access to a lot of data, but for performance and security reasons they can access nowhere near all the available data. That’s why it’s a good idea to also use Chrome DevTools to measure your page performance.

To debug INP in DevTools you can measure how the browser processes one of the slow interactions you’ve identified before. DevTools then shows you exactly how the browser is spending its time handling the interaction.

How You Might Resolve This Issue

In this example, you or your development team could resolve this issue by:

  • Working with the third-party script provider to optimize their script.
  • Removing the script if it is not essential to the website, or finding an alternative provider.
  • Adjusting how your own code interacts with the script

How To Investigate High Input Delay

In the previous example most of the INP time was spent running code in response to the interaction. But often the browser is already busy running other code when a user interaction happens. When investigating the INP components you’ll then see a high input delay value.

See also  Meta Integrates Google & Bing Search Results Into AI Assistant

This can happen for various reasons, for example:

  • The user interacted with the website while it was still loading.
  • A scheduled task is running on the page, for example an ongoing animation.
  • The page is loading and rendering new content.

To understand what’s happening, you can review the invoker name and the INP scripts section of individual user experiences.

In this screenshot, you can see that a timer is running code that coincides with the start of a user interaction.

The script can be opened to reveal the exact code that is run:

The source code shown in the previous screenshot comes from a third-party user tracking script that is running on the page.

At this stage, you and your development team can continue with the INP workflow presented earlier in this article. For example, debugging with browser DevTools or contacting the third-party provider for support.

How To Investigate High Presentation Delay

Presentation delay tends to be more difficult to debug than input delay or processing time. Often it’s caused by browser behavior rather than a specific script. But as before, you still start by identifying a specific page and a specific interaction.

You can see an example interaction with high presentation delay here:

You see that this happens when the user enters text into a form field. In this example, many visitors pasted large amounts of text that the browser had to process.

Here the fix was to delay the processing, show a “Waiting…” message to the user, and then complete the processing later on. You can see how the INP score improves from May 3:

Get The Data You Need To Improve Interaction To Next Paint

Setting up real user monitoring helps you understand how users experience your website and what you can do to improve it. Try DebugBear now by signing up for a free 14-day trial.

Google’s CrUX data is aggregated over a 28-day period, which means that it’ll take a while before you notice a regression. With real-user monitoring you can see the impact of website changes right away and get alerted automatically when there’s a big change.

DebugBear monitors lab data, CrUX data, and real user data. That way you have all the data you need to optimize your Core Web Vitals in one place.

This article has been sponsored by DebugBear, and the views presented herein represent the sponsor’s perspective.

Ready to start optimizing your website? Sign up for DebugBear and get the data you need to deliver great user experiences.


Image Credits

Featured Image: Image by Redesign.co. Used with permission.

You Might Also Like

Why QVC is targeting Gen X with a TikTok livestream shopping event

Inside the marketing industry trends to follow in 2025

Pantene turns Alix Earle’s viral TikTok post into collection, campaign

15 Proven Tips to Get More Social Media Followers

5 years of media evolution provide few answers to brands’ chaotic 2025

TAGGED: Lakshmi
Share This Article
Facebook Twitter Copy Link
Previous Article Young Asian woman with head in hands at her desk Here are the worst-performing FTSE 100 shares over the last 5 years
Next Article Feeling unsatisfied with life Feeling Unsatisfied With Life? Here’s How To Change That!
Leave a comment Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Latest News

Bitcoin mining in the United States (USA): the new era under Trump
Bitcoin mining in the United States (USA): the new era under Trump
Mining May 8, 2025
Don’t Forget To Report Your Gains From Crypto — The IRS Already Knows About Them
Don’t Forget To Report Your Gains From Crypto — The IRS Already Knows About Them
Investing May 7, 2025
Get Lifetime Access to Top Documentaries for Just $149.97
Get Lifetime Access to Top Documentaries for Just $149.97
Personal Finance May 7, 2025
Why QVC is targeting Gen X with a TikTok livestream shopping event
Why QVC is targeting Gen X with a TikTok livestream shopping event
Marketing May 7, 2025
A No Spend Challenge Can Reset Your Finances – Here’s How To Do It
A No Spend Challenge Can Reset Your Finances – Here’s How To Do It
Personal Finance May 7, 2025
The easyJet share price crashed almost 15% in May. Should I buy it in June?
2 amazing UK shares on my watchlist for May
Investing May 7, 2025

Recent Posts

  • Bitcoin mining in the United States (USA): the new era under Trump
  • Don’t Forget To Report Your Gains From Crypto — The IRS Already Knows About Them
  • Get Lifetime Access to Top Documentaries for Just $149.97
  • Why QVC is targeting Gen X with a TikTok livestream shopping event
  • A No Spend Challenge Can Reset Your Finances – Here’s How To Do It

Recent Comments

No comments to show.

You Might also Like

Why QVC is targeting Gen X with a TikTok livestream shopping event
Marketing

Why QVC is targeting Gen X with a TikTok livestream shopping event

May 7, 2025
Inside the marketing industry trends to follow in 2025
Marketing

Inside the marketing industry trends to follow in 2025

May 7, 2025
Pantene turns Alix Earle’s viral TikTok post into collection, campaign
Marketing

Pantene turns Alix Earle’s viral TikTok post into collection, campaign

May 7, 2025
15 Proven Tips To Get More Social Media Followers
Marketing

15 Proven Tips to Get More Social Media Followers

May 7, 2025
moneymindhub moneymindhub

Our mission is to empower individuals with the knowledge and tools they need to achieve financial independence and make informed financial decisions.

Editor Choice

How To Rank Higher On YouTube
Investing Money For Beginners: How To Start Investing Today!
Zuckerberg Wants to Actively Shape Trump’s Tech Policies
2 cheap FTSE 250 growth shares to consider in 2025!

Follow Us on Socials

We use social media to react to breaking news, update supporters and share information

Facebook Twitter Telegram
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms of Service
Reading: Optimizing Interaction To Next Paint: A Step-By-Step Guide
Share
© 2024 All Rights Reserved | Powered By moneymindhub
Welcome Back!

Sign in to your account

Lost your password?