Documentation

All the information you need in one place

Can I send the data collected by the plugin to other platforms?

If you need to have access to the events that Nelio A/B Testing is going to synchronize with our servers, you will only have to add a small JavaScript function to your website so that our plugin informs you of said events. This function should be called nabMonitorTrackingEvents.

For example, suppose you want to log sync events in your browser console. Simply add the following code to your website:

function nabMonitorTrackingEvents( events ) {
  console.log( events );}

and every time Nelio A/B Testing is about to, for example, send a visualization to our servers or register a conversion, the plugin will invoke this function with the list of events where said visualization or conversion will appear.

Of course, you can replace this console.log with the appropriate monitoring solution you need.