EU Privacy-first web analytics. No accounts. No tracking.
EU Privacy-first web analytics. No accounts. No tracking.

Script Installation

Documentation on how to install the PageviewsOnline tracking script onto your website.

We are hard at work building PageviewsOnline and would love to hear your thoughts and ideas. If you have a moment, please share your feedback as it will help shape the service into something great! Thank you!

Click here to give your feedback
Home Documentation Installation

HTML Version

Simply add this script tag at the end of your </body> (or anywhere else on the page).

<script async src="https://scripts.pageviews.online/latest.min.js"></script>

JavaScript Version

You can also install the script programmatically using JavaScript with this code:

const script = document.createElement("script"); script.src = "https://scripts.pageviews.online/latest.min.js"; script.async = true; document.head.appendChild(script);