Skip to content

Instantly share code, notes, and snippets.

@klaasman
Last active November 22, 2017 12:53
Show Gist options
  • Save klaasman/3db53291dff89dc70ba3 to your computer and use it in GitHub Desktop.
Save klaasman/3db53291dff89dc70ba3 to your computer and use it in GitHub Desktop.
Google analytics localStorage
var analyticsId = '';
if (window.localStorage && window.localStorage.setItem) {
window.ga('create', analyticsId, {
'storage': 'none',
'clientId': window.localStorage.getItem('clientId')
});
window.ga(function(tracker) {
return window.localStorage.setItem('clientId', tracker.get('clientId'));
});
} else {
window.ga('create', analyticsId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment