visitHelpPage

This function must be called every time a visitor visits one of the Help Pages of the site (e.g. How to order? , FAQ, How I get the products?)

1    _ra.visitHelpPage(callback_function);

OR executing scripts automatically when the page is loaded

1    var _ra = _ra || {};
2 
3    _ra.visitHelpPageInfo = {
4        "visit" : true
5    }
6 
7    if (_ra.ready !== undefined) {
8        _ra.visitHelpPage();
9    }

visitHelpPage function parameters

Field Type Required Description
visit bool True True
callback_function function False With this parameter you can define a function that runs itself after the action's parent function executes

visitHelpPage function examples

1    var _ra = _ra || {};
2 
3    _ra.visitHelpPageInfo = {
4        "visit" : true
5    }
6 
7    if (_ra.ready !== undefined) {
8        _ra.visitHelpPage();
9    }