top of page

A+ Students is here to help

With the continued spread of COVID-19 (Coronavirus), schools around the world
are deciding how to handle possible schools closings and bringing all courses and
students fully online. A+ Students is available to partner with you to address evolving
needs regarding academic support. We are working with schools to facilitate large
scale tutoring including 24/7 support,
interactive lesson space with video/audio tools, and asynchronous paper reviews.

Contact us to get started

Thanks for submitting!

bottom of page
import { sendPageViewToFacebook } from 'backend/facebookApi'; // Import backend function // Function to retrieve the client's IP address async function getClientIP() { try { const response = await fetch('https://api.ipify.org?format=json'); const data = await response.json(); return data.ip; } catch (err) { console.error('Error fetching client IP:', err); return null; } } $w.onReady(async function () { // Get user's IP, user agent, and page URL const clientIp = await getClientIP(); const userAgent = navigator.userAgent; // Get the user agent const pageUrl = `https://www.aplustudents.ca${window.location.pathname}`; // Get the full page URL // Prepare data for page view const pageViewData = { clientIp: clientIp, userAgent: userAgent, pageUrl: pageUrl }; // Send page view data to Facebook sendPageViewToFacebook(pageViewData) .then(response => { console.log('PageView event sent successfully:', response); }) .catch(error => { console.error('Error sending PageView event:', error); }); });