Disclaimer: Prices shown are sourced from CoinGecko and may be delayed. This is not financial advice. Always DYOR before investing in cryptocurrencies.
🍪 We use cookies to improve your experience and analyze site traffic. By continuing, you agree to our
Privacy Policy.
// analytics.js — already loaded by post.php via:
//
// This file sends a hit to analytics-track.php on every page load.
(function () {
// Don't track admin users (if admin cookie is set)
try {
if (document.cookie.indexOf('oct_admin=') !== -1) return;
} catch (e) {}
var fd = new FormData();
fd.append('page', window.location.pathname + window.location.search);
fetch('/analytics-track.php', {
method: 'POST',
body: fd,
// Use keepalive so the request completes even if user navigates away
keepalive: true
}).catch(function () {});
})();