1. Help Center
  2. Getting Started

How Convert Experiences Works Behind the Scenes

THIS ARTICLE WILL HELP YOU:

Grasp the Fundamental Way in Which Convert Works

All that needs to be done in order to run an experience is to insert a small piece of Javascript code into the header of the page(s).

Once added, that code will send tracking requests to Convert servers and will receive back the testing data that needs to be available in order to run the experiences. More exactly, the backend servers would analyze the data received from the browser, would load visitors’ history, and based on that would decide which variation of a certain experience should present back.

The variation content is sent back to the browser where it is processed. Javascript code is used to manipulate certain objects inside the DOM structure to create variations. An example of such a piece of code is the following:

convert._$(‘.buy_now’).val(“Add to Cart”);


The first part is the jQuery reference (which is made available on any page that has Convert Experiment’s code installed). The second part is just a basic jQuery function that will change the value of all the elements that have class buy_now (probably add to cart buttons) to Add to Cart.

Once the variation code is made available in the browser, element changes occur through a patented process which will poll the existence of elements and change them as soon as they are available, eliminating the flickering effect induced with the change.

On average sites that have Convert Experiences code installed before any other resource on the page (below <title>), the changes of elements according to the variation content occurs usually even before the full page is loaded. (An exception is Internet Explorer, for which the changes are done immediately after DOM Loaded event is fired).

As a conclusion, to be able to do A/B testing on your website, all that needs to be done is to add the Convert Experiences code in the head section, just after the <title> tag.

Any other modification of the source code of the website is not needed! More than this, since the tested variation changes are applied through JavaScript and not by modifying the source code of the page, your SEO efforts won't be affected.