/**
* This method allows you to track any actions that your users might perform. Each of these actions is commonly referred to as an event.
*
* https://docs.rudderstack.com/stream-sources/rudderstack-sdk-integration-guides/rudderstack-javascript-sdk#3-4-track
*/
function track(event, properties, options, callback) {
if(window.rudderanalytics) {
window.rudderanalytics.track(event, properties, options, callback);
}
}
/**
* This method lets you record information about the web page being viewed by the user.
*
*/
function trackPage(event, properties, options, callback) {
if(window.rudderanalytics) {
window.rudderanalytics.track(event, properties, options, callback);
}
}
/**
* This method allows you to track any click that your users might perform on a link.
*
* @param {string} selector jQuery selector of the tracked link
* Otherwise same params of the track function: https://docs.rudderstack.com/stream-sources/rudderstack-sdk-integration-guides/rudderstack-javascript-sdk#3-4-track
*/
function trackLink(selector, event, properties, options, callback) {
$(selector).on("click", function(e) {
if(window.rudderanalytics) {
var _this = $(this);
window.rudderanalytics.track(event, properties, options, callback);
// Wait for the tracking request to have time to go
var timeoutDelay = 300;
setTimeout(function() {
var href = _this.attr("href");
var target = _this.attr("target");
// New tab
if (target) {
window.open(href, target || '_blank');
}
// Current tab
else {
window.location.href = href;
}
}, timeoutDelay);
return false;
}
});
}
Vous cherchez un graphopédagogue (rééducateur de l'écriture) près de chez vous ? Voici les membres, en France et à l'étranger (Belgique, Nouvelle-Calédonie), de notre réseau, signataires de la Charte des graphopédagogues indépendants.
Chacun d'entre eux est agréé par l'association 5E et travaille en collaboration avec l'ensemble du réseau.
Vous pouvez zoomer ou dézoomer pour trouver la ou le graphopédagogue près de chez vous.