You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No INP issues in Google Search Console, INP below 200ms
Current Behavior
Google Search Console (Core Web Vitals) reports a problem with INP: "INP issue: longer than 200ms (mobile)".
The problem regards the action of pushing Accept button. You can confirm the problem with debugbear inp-debugger report. Correct me if I'm wrong, but I suspect that click action triggers some code that takes long to process (long in terms of INP metric).
Duration breakdown:
Input Delay | 28 ms
Processing Time | 50 ms
Presentation Delay | 130 ms
I might have found the bottleneck, however the script is minified and thous hardly readable. The click event takes a lot of time.
Either look into your Google Search Console - Core Web vitals Report, or use debugbear inp-debugger report.
Proposed fix or additional info.
The proposed solution is to defer code execution. So visually code looks like it has been executed successfully while some work is still underway in the background.
The logic is as follows:
function saveSettings () {
// Do critical work that is user-visible:
validateForm();
showSpinner();
updateUI();
// Defer work that isn't user-visible to a separate task:
setTimeout(() => {
saveToDatabase();
sendAnalytics();
}, 0);
}
Version
3.0.0
On which browser do you see the issue?
No response
The text was updated successfully, but these errors were encountered:
One more thing - the function that replaces <script src= should be run with a delay after consent button click. This might be the function "manageScriptTags". This will improve INP furthermore
Expected Behavior
No INP issues in Google Search Console, INP below 200ms
Current Behavior
Google Search Console (Core Web Vitals) reports a problem with INP: "INP issue: longer than 200ms (mobile)".
The problem regards the action of pushing Accept button. You can confirm the problem with debugbear inp-debugger report. Correct me if I'm wrong, but I suspect that click action triggers some code that takes long to process (long in terms of INP metric).
Duration breakdown:
Input Delay | 28 ms
Processing Time | 50 ms
Presentation Delay | 130 ms
I might have found the bottleneck, however the script is minified and thous hardly readable. The click event takes a lot of time.
There is as whole article on this topic at https://web.dev/articles/cookie-notice-best-practices
Steps to reproduce
Either look into your Google Search Console - Core Web vitals Report, or use debugbear inp-debugger report.
Proposed fix or additional info.
The proposed solution is to defer code execution. So visually code looks like it has been executed successfully while some work is still underway in the background.
The logic is as follows:
Version
3.0.0
On which browser do you see the issue?
No response
The text was updated successfully, but these errors were encountered: