CEDDL-polyfill The Dynamic Data Layer for the browser

Single Page Applications

A single-page application (SPA) is a web application or web site that interacts with the user by dynamically rewriting the current page rather than loading entire new pages from a server. This approach avoids interruption of the user experience between successive pages, making the application behave more like a desktop application.

When pages views are controlled by a javascript router, content is loaded via AJAX or the site handles multi-step forms within a single page the polyfill will by default only recognize the single containing page. Depending on the type of page and the intentions you can Decide to either generate in-page events to which tags can be linked (e.g. “User Viewed a Video”) or generate virtual-pageviews as if the page was actually reloaded.

If you are using a router framework in your application implement virtual-pageviews. frontend frameworks emit events or have a callback function on route change. On page change tell the datalayer to initialize.

// Clean datalayer in re-initialize on page change (virtual-pageview).
ceddl.initialize();

There are many single page application frameworks out there. No standard exists on how pagechanges are handled. Look at the documentation of the framework you are using to find out how to detect a page change.

A example with backbone router

router.on("route", (page) => {
  // Clean datalayer in re-initialize on page change (virtual-pageview).
  ceddl.initialize();
});

With virtual-pageviews there should be no need to change web analytics, tag management code. The initialize / virtual pageview will do the following.

  • Clear the data in the datalayer including history of events.
  • Restart collecting data from the DOM. Filling the datalayer.
  • Emit events on the eventbus as if the browser window was reloaded.

We serve First-Party Cookies on site to improve and provide secured login, fraud detection, traffic analysis, remarketing, personalization and remembering your preferences.

Read more, Disable