mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-10 20:05:38 +02:00
28 lines
No EOL
752 B
HTML
28 lines
No EOL
752 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Rybbit Analytics Example</title>
|
|
</head>
|
|
<body>
|
|
<h1>Rybbit Analytics Example</h1>
|
|
|
|
<button onclick="Rybbit.trackEvent('button_click', { buttonId: 'test-button' })">
|
|
Track Button Click
|
|
</button>
|
|
|
|
<!-- Add the analytics script -->
|
|
<script src="/script.js"></script>
|
|
|
|
<!-- Example of tracking custom events -->
|
|
<script>
|
|
// Track a custom event
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
Rybbit.trackEvent('page_ready', {
|
|
loadTime: performance.now()
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |