Pages
Page History
...
In this example, visitors that browse the site using a desktop device will be are segmented. You must first create a trigger to detect the device type, and then create a segment based
To implement the example:
Creating the trigger
To create the trigger:
- In the Frosmo Control Panel, in the sidebar, select More > Triggers.
- Click Create trigger.
Define the following settings:
- Name: Enter "[Device type] Desktop".
- Evaluation point: Select DOM ready.
Rules: Click Add new rule, select JavaScript code, and set the following rule:
Divbox class frosmo-rule-container The value of the
Code Block language js theme RDark easy.utils.isDesktop()
JavaScript function is exactly true.
This means that when all HTML elements have been loaded on the page, the JavaScript functions checks whether the visitor is using a desktop device. If so, the function returns "true", and the trigger is fired.
- Click Save.
...
To create a segment for visitors who use a desktop device:
- In the Frosmo Control Panel, select Data Management > Segmentation > Segmentsin the sidebar, select Audiences.
- Click Create segment.
Define the segmentation rules:
Click Add new rule, select Trigger, and set the following rule:
Divbox class frosmo-rule-container The visitor has triggered [Device type] Desktop more than equal to 1 times, with each trigger event counted.
This means that in order to get segmented, the visitor must browse the site using a desktop device at least once. The trigger is evaluated on each page load.
- Set the time limit based on the start and end date of your modification. The default time limit is 14 days.
- Select Description, and enter "Using desktop device" as the segment name.
- Click Save.
...