Why switch
Google Analytics is powerful, but that power brings consent work: cookies, consent mode, tag-manager rules and a transfer story legal teams keep re-reviewing. After Schrems II, several EU data protection authorities flagged specific GA setups as unlawful because personal data was sent to the US without adequate safeguards.
MOJAQ is the simpler option for teams that need product and traffic analytics, not advertising surveillance. It is cookieless by design, hosted in Helsinki with a DPA included, and avoids US transfers. If GA was the only reason your site shows an analytics cookie banner, MOJAQ can remove that requirement from your analytics stack.
Step by step
- Remove the GA4 / GTM snippet. If GTM only loads Google Analytics, remove the container too.Remove GA4
<!-- Before --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXX"></script> <!-- After: removed --> - Add the MOJAQ cookieless script with your domain. Keep it in the head or app shell so pageviews are captured across routes.Add the analytics script
<script defer data-domain="example.com" src="https://analytics.mojaq.com/js/script.js"></script> - Map the GA events you actually use (signups, checkouts, trial activations) to MOJAQ custom events via the analytics event function. Keep names stable, use low-cardinality props, and never send emails, names or raw IDs.Track a custom event
// fire a custom event via the analytics event function mojaqEvent("signup_completed", { method: "github", plan: "beta" }); - Drop the analytics cookie banner branch, only if analytics cookies were the sole reason for it. Keep consent for ads, embeds, chat widgets and other non-essential cookies.
What carries over (and what is different)
Carries over: pageviews, referrers, UTM sources, top pages, device and browser aggregates, goals and custom events. Different by design: no cross-site tracking, no advertising identity graphs, no user-level timelines, no cookie retargeting. Expect cleaner aggregate analytics, and compare trends rather than exact numbers, since cookieless measurement will not match GA one to one.
Questions
Can I remove my cookie banner after switching?
If GA was your only analytics cookie or non-essential tracker, usually yes. Keep a banner for any other cookie-setting tools.
Will MOJAQ match GA numbers exactly?
No. Cookieless, privacy-first analytics differs from GA because it avoids user-level and cross-site tracking. Use trends as the comparison point.
What is the GDPR benefit?
Analytics data stays in Helsinki with a DPA included and no US transfers, avoiding the GA transfer issues raised by EU regulators.
