Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

JS segmentation library for split tests

Source JavaScript code

Public GitHub repository

Features

  • Assigns a visitor to one of the specified segments
  • The maximum number of segments is 26, like the letters in the Latin alphabet from A to Z
  • A visitor's belonging to a segment can be specified and can last for a session or a specified number of days

...

Code Block
languagejs
themeFadeToGrey
segmab({segments_number: 3, prefix: "myprefix", days: 0}, segment => {
    ga("set", "dimension1", segment);
});

Source JavaScript code

...