Jump to content

Speculation Rules API


Tim Vereecke

Recommended Posts

With the new Speculation rules API browsers can prerender pages. This can lead to ad impressions being requested and logged without users navigation to the page (and not seeing ads).

I think it would make sense to delay the logging to be delayed till after the prerenderingchange event to:

  • Avoid views never seen
  • Avoid reduction of CTR 

eg.

if (document.prerendering) {
      document.addEventListener("prerenderingchange", doSomething, { once: true, });
} else {
     doSomething();
}

Reference:

https://developer.mozilla.org/en-US/docs/Web/API/Speculation_Rules_API

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...