WORLD CANCER DAY

Tuesday the 4th of February 2025 is World Cancer Day; use the hashtags #UniteAgainstCancer and #WorldCancerDay on social media to let others know you are supporting the global fight against cancer.

You can show your support by wearing one of our charity wristbands or our winter wooly hats which can be purchased through our shop. Make sure you remember to tag your photos so we can repost/retweet the best ones!

Click the 'Donate Now' button at the foot of this page to make a donation through our justgiving page.

Make a Difference Today

Your donations directly fund vital cancer research, provide support for those affected, and drive awareness campaigns, creating hope and saving lives.
	
   <script>
   
  // social sharing helpers
    function shareToFacebook(btn, link) {
        btn.setAttribute('target', '_blank');
        btn.setAttribute(
            'href',
            `https://www.facebook.com/sharer/sharer.php?u=${link}`
        );
    }

    function shareToTwitter(btn, link) {
        btn.setAttribute('target', '_blank');
        btn.setAttribute(
            'href',
            `https://twitter.com/share?url=${link}`
        );
    }
  
      function shareToLinkedIn(btn, link) {
        btn.setAttribute('target', '_blank');
        btn.setAttribute(
            'href',
            `https://www.linkedin.com/sharing/share-offsite/?url=${link}`
        );
    }

    function socialShare(platform, btn, link) {
         if (platform === 'facebook') {
             shareToFacebook(btn, link);
         } else if (platform === 'twitter') {
             shareToTwitter(btn, link);
         } else if (platform === 'linkedin') {
             shareToLinkedIn(btn, link);
         }
     
    }
    
    // social sharing
    const btns = {
        'linkedin': document.querySelector('[data-social="linkedin"]'),
        'twitter': document.querySelector('[data-social="twitter"]')
    }

    const link = window.location.href;

    for (let key in btns) {
        if (btns.hasOwnProperty(key)) {
            socialShare(key, btns[key], link);
        }
    }
    
   </script>