Play, Create & Learn with Bip Bap Bop

Help us build experiences you trust and kids love. Sign up now for exclusive first looks.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
roger the robot
window.onload = function() { console.log("Social share script is running"); // Debugging log var currentURL = window.location.href; var textToShare = encodeURIComponent("Check out this article!"); // Facebook var facebookLink = document.querySelector('[data-social-id="facebook-share"]'); if (facebookLink) { facebookLink.href = `https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(currentURL)}`; } // Twitter var twitterLink = document.querySelector('[data-social-id="twitter-share"]'); if (twitterLink) { twitterLink.href = `https://twitter.com/intent/tweet?text=${textToShare}&url=${encodeURIComponent(currentURL)}`; } // WhatsApp var whatsappLink = document.querySelector('[data-social-id="whatsapp-share"]'); if (whatsappLink) { whatsappLink.href = `https://api.whatsapp.com/send?text=${textToShare}%20${encodeURIComponent(currentURL)}`; } // Reddit var redditLink = document.querySelector('[data-social-id="reddit-share"]'); if (redditLink) { redditLink.href = `https://www.reddit.com/submit?url=${encodeURIComponent(currentURL)}&title=${textToShare}`; } };