<div class="donation-widget-container">
    <div class="donation-type-container">
        <div class="type-item" data-type="single">One Off Donation</div>
        <div class="type-item active" data-type="monthly">❤️ Monthly Donation</div>
    </div>
    <div class="donation-message-container">
        <div class="donation-message"></div>
        <img src="/wp-content/uploads/2024/09/arrow.png" class="arrow" />
    </div>
    <div class="donation-amount-container">
        <div class="amount-item" data-type="single" data-amount="380">$380</div>
        <div class="amount-item" data-type="single" data-amount="880">$880</div>
        <div class="amount-item" data-type="single" data-amount="2880">$2880</div>
        <div class="amount-item" data-type="monthly" data-amount="180">$180</div>
        <div class="amount-item" data-type="monthly" data-amount="380">$380</div>
        <div class="amount-item" data-type="monthly" data-amount="580">$580</div>
        <div class="amount-item custom" data-is-custom="true">Other</div>
    </div>
    <div class="custom-amount-container d-none">
        <div class="lbl-price-tag">$</div>
        <div class="input-field"><input type="number" class="num-custom-amount" step="1" min="10" value="" placeholder="Other" /></div>
    </div>

    <div class="button-container">
        <button type="button" class="btn-go-to-donate">
            Donate $<span class="lbl-donate-amount"></span>
        </button>
    </div>

</div>

<style>
    .donation-type-container {
        display: flex;
        gap: 9px;
    }
    .donation-type-container .type-item {
        border: 1px solid;
        border-radius: 9px;
        width: 50%;
        text-align: center;
        cursor: pointer;
        padding: 6px;
    }
    .donation-type-container .type-item.active {
        background: #0c4d71;
        color: #FFF;
        border: 2px solid #0183cb;
    }
    .donation-amount-container {
        display: flex;
    }

    .donation-amount-container {
        display: flex;
        justify-content: space-evenly;
        gap: 9px;
    }
    .donation-amount-container > div.amount-item {
        background: #ccc;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        min-height: 36px;
    }
    .donation-amount-container > div.amount-item.active {
        background: #0c4d71;
        color: #FFF;
    }

    .custom-amount-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }
    .custom-amount-container .lbl-price-tag {
        background: #ededed;
        display: flex;
        align-items: center;
        height: 38px;
        padding: 0px 12px;
        border: none;
        border-top-left-radius: 9px;
        border-bottom-left-radius: 9px;
    }
    .custom-amount-container .input-field > input {
        background: #ededed;
        border: none;
        max-width: 90px;
        height: 38px;
        text-align: center;
        border-top-right-radius: 9px;
        border-bottom-right-radius: 9px;
        padding: 0;
    }

    .donation-message-container {
        position: relative;
    }
    .donation-message {
        font-family: 'Jost';
        font-size: 14px;
        display: block;
        position: relative;
        margin: 10px 0px 20px;
        text-align: end;
        padding-right: 55px;
        color: coral;
    }
    .donation-message-container .arrow {
        position: absolute;
        top: -40px;
        right: 6px;
        width: 50px;
    }

    .button-container {
        margin: 20px 0;
        text-align: center;
    }
    button.btn-go-to-donate {
        min-width: 100%;
        margin: 0 auto;
        text-align: center;
        font-size: 18px;
        border-radius: 6px;
        background: #0183cb;
        color: #FFF;
        border: none;
        height: 50px;
    }
</style>
<script>
    jQuery(document).ready(function( $ ) {
        let langPrefix = '';
        let donationType = 'monthly';
        let isCustomAmount = false;
        let donationAmount = 380;
        let donateSingleString = 'A Small Gift Every Month, A Big Impact Forever';
        let donateMonthlyString = 'Monthly donation via PayPal';

        $(".type-item").click(function(e){
            $('.type-item').removeClass('active');
            $(this).addClass('active');
            let selectedType = $(this).data('type');
            if (selectedType !== donationType) {
                donationType = selectedType;
                isCustomAmount = false;
                donationAmount = (donationType === 'single')? 880:380;
            }
            updateDonationURL();
        });

        $(".amount-item").click(function(){
            isCustomAmount = $(this).data('is-custom') || false;
            if (isCustomAmount) {
                donationAmount = parseInt($(".num-custom-amount").val()) || 0;
            }else{
                donationAmount = parseInt($(this).data('amount'));
            }
            updateDonationURL();
        });

        $(".num-custom-amount").keyup(function(){
            donationAmount = parseInt($(".num-custom-amount").val());
            updateDonationURL();
        });

        function updateDonationURL()
        {
            let urlType = (donationType === 'single')? 'online-donation-one-off':'online-donation-monthly';
            let remindString = (donationType === 'single')? donateSingleString:donateMonthlyString;
            let url = "javascript:window.open('"+ langPrefix + '/get-involved/how-to-donate/' + urlType + '/?amount=' + donationAmount +"', '_blank');";

            // Update Selected Item Class
            $('.amount-item').removeClass('active');
            if (isCustomAmount) {
                $('.custom-amount-container').removeClass('d-none');
                $(".amount-item.custom").addClass('active');
                $('.num-custom-amount').focus();
            }else{
                $('.custom-amount-container').addClass('d-none');
                $(".amount-item[data-amount='"+donationAmount+"']").addClass('active');
            }

            $(".donation-message").text(remindString);
            $(".amount-item").addClass('d-none');
            $(".amount-item[data-type='"+donationType+"']").removeClass('d-none');
            $(".amount-item.custom").removeClass('d-none');
            $('.lbl-donate-amount').text(donationAmount);
            $('.btn-go-to-donate').attr('onClick', url);

            if (donationAmount > 10) {
                $(".btn-go-to-donate").attr('disabled', false);
            }else{
                $(".btn-go-to-donate").attr('disabled', true);
            }
        }

        updateDonationURL();
    });
</script>{"id":34,"date":"2023-02-14T05:43:36","date_gmt":"2023-02-14T05:43:36","guid":{"rendered":"https:\/\/www.spca.org.hk\/?page_id=34"},"modified":"2025-07-22T17:57:44","modified_gmt":"2025-07-22T09:57:44","slug":"how-to-donate","status":"publish","type":"page","link":"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/","title":{"rendered":"How to donate"},"content":{"rendered":"<section class=\"wpb-content-wrapper\"><p>[vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_id=&#8221;section-online-donation&#8221;][vc_column el_class=&#8221;content-title-wtbg&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column_text]<\/p>\n<h2>Make an Online Donation<\/h2>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_row_inner][vc_column_inner][vc_column_text]For more than 100 years, we have relied on the generosity of the public to fund our work to protect the animals of Hong Kong. Today, this represents 99% of all our funding with the small remainder provided by the government.<\/p>\n<p>Please remember that all donations over HK$100 are eligible for tax deductions.[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][\/vc_column_inner][\/vc_row_inner][vc_row_inner][vc_column_inner width=&#8221;1\/4&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;][vc_column_text][\/vc_column_text][vc_column_text]<\/p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">If you wish to donate offline, please <a href=\"\/get-involved\/how-to-donate\/#section-offline-donation\">&#8220;click here&#8221;<\/a><\/span><\/p>\n<p>[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/4&#8243;][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column el_class=&#8221;content-title-wtbg&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column_text]<\/p>\n<h2>Programmes to support<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;30px&#8221;][vc_row_inner el_class=&#8221;prog_text_links&#8221;][vc_column_inner width=&#8221;1\/3&#8243;][vc_column_text]<a href=\"#ASP\">Animal Sponsorship Programme &gt;<\/a>[\/vc_column_text][vc_column_text]<a href=\"#inspector_fund\">Inspector Fund &gt;<\/a>[\/vc_column_text][vc_column_text]<a href=\"#mosaic_wall\">Mosaic Animal Wall Donation Programme &gt;<\/a>[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/3&#8243;][vc_column_text]<a href=\"#new_hope\">Paws for a New Hope Donation Scheme &gt;<\/a>[\/vc_column_text][vc_column_text]<a href=\"#cinderella\">Cinderella Vet Medical Fund &gt;<\/a>[\/vc_column_text][vc_column_text]<a href=\"#CCCP\">Cat Colony Care Program &gt;<\/a>[\/vc_column_text][\/vc_column_inner][vc_column_inner width=&#8221;1\/3&#8243;][vc_column_text]<a href=\"#china_outreach\">China Outreach &gt;<\/a>[\/vc_column_text][vc_column_text]<a href=\"#wedding_favours\">Wedding Favours &gt;<\/a>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8221;30px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714355566539{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;ASP&#8221;][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714116914899{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/04\/ASP_topbanner_800x534-2.jpg?id=21797) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;60px&#8221;][vc_column_text]<\/p>\n<h2>Animal Sponsorship Programme<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952583644{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]The SPCA receives and saves thousands of animals every year. Sustained and stable resources are critical to our work, not only to help us bear the huge expenditure on the accommodation, food and medical rehabilitation of animals, but also to help us to continuously improve the ongoing work of saving animals, so that unfortunate animals are able to receive more timely support.\u200b[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \" title='Online Donation (Monthly)' rel='' href = \"\/get-involved\/how-to-donate\/online-donation-monthly\/?fund=asp\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online Donation (Monthly)<\/span><\/a><\/div><div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \"  rel='' href = \"\/get-involved\/how-to-donate\/online-donation-one-off\/?fund=asp\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online donation (One-off)<\/span><\/a><\/div><div class=\"porto-btn-ctn-right \"><a class=\"porto-btn  vc_custom_1714117332978 porto-adjust-bottom-margin porto-btn-normal porto-btn-no-hover-bg   wpb_custom_03b728fdde96838fed12806e158d8791  porto-btn-right \"  rel='' href = \"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/animal-sponsorship-program\/\"  data-hover=\"\" data-border-color=\"\" data-bg=\"\" data-hover-bg=\"\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;color: #0083cb;\"><span class=\"porto-btn-hover\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Know more +<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714355522438{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;inspector_fund&#8221;][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1713951642766{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/04\/Inspector-Fund-829x446_v2.jpg?id=21663) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;60px&#8221;][vc_column_text]<\/p>\n<h2>Inspector Fund<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952601214{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]Despite limited resources, the SPCA persists in providing 24-hour rescue services without any charges. Whether an animal is injured, in danger, or subjected to abuse, the SPCA inspectors are dispatched to investigate and carry out rescue operations.<\/p>\n<p>The SPCA also actively investigates complaints and cases related to animal cruelty and assists the authorities by handling, treating and caring for a large number of abused animals. After the cases are concluded, efforts are made to find new homes for them.[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \" title='Online Donation (Monthly)' rel='' href = \"\/get-involved\/how-to-donate\/online-donation-monthly\/?fund=inspector\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online Donation (Monthly)<\/span><\/a><\/div><div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \"  rel='' href = \"\/get-involved\/how-to-donate\/online-donation-one-off\/?fund=inspector\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online donation (One-off)<\/span><\/a><\/div><div class=\"porto-btn-ctn-right \"><a class=\"porto-btn  vc_custom_1713949013739 porto-adjust-bottom-margin porto-btn-normal porto-btn-no-hover-bg   wpb_custom_03b728fdde96838fed12806e158d8791  porto-btn-right \"  rel='' href = \"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/inspector-fund\/\"  data-hover=\"\" data-border-color=\"\" data-bg=\"\" data-hover-bg=\"\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;color: #0083cb;\"><span class=\"porto-btn-hover\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Know more +<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714355604201{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;mosaic_wall&#8221;][vc_column css_animation=&#8221;fadeInUp&#8221; width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1713951486014{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/04\/Mosaic-banner-829&#215;446-1.jpg?id=20514) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;60px&#8221;][vc_column_text]<\/p>\n<h2>Mosaic Animal Wall Donation Programme<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952576480{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]Show your support for the SPCA, whilst also paying tribute to your own pet by capturing their likeness with this traditional ancient art form.<\/p>\n<p>The mosaic will be displayed at the SPCA Jockey Club Centennial Centre (Tsing Yi Centre) for five years for all to see and admire. After the exhibition period, the mosaic will be presented to the donor as a gratitude.[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \" title='Online Donation (Monthly)' rel='' href = \"https:\/\/web-centre.spca.org.hk\/fundraise\/mosaic_animal_wall?locale=en\" target='_blank' data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Donation Online Now<\/span><\/a><\/div><div class=\"porto-btn-ctn-right \"><a class=\"porto-btn  vc_custom_1716519701461 porto-adjust-bottom-margin porto-btn-normal porto-btn-no-hover-bg   wpb_custom_03b728fdde96838fed12806e158d8791  porto-btn-right \"  rel='' href = \"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/mosaic-animal-wall-donation-programme\/\"  data-hover=\"\" data-border-color=\"\" data-bg=\"\" data-hover-bg=\"\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;color: #0083cb;\"><span class=\"porto-btn-hover\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Know more +<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714355582085{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;new_hope&#8221;][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1713951574067{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/04\/Paws_for_new_hope_800x500_v2.jpg?id=21571) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;60px&#8221;][vc_column_text]<\/p>\n<h2>Paws for a New Hope Donation Scheme<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952583644{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]Leave your mark at the SPCA Jockey Club Centennial Centre (Tsing Yi Centre).<\/p>\n<p>Each personalised engraved plaque, made of upcycled materials in the shape of a pawprint, represents the donor\u2019s lasting impact as a supporter of the SPCA in the collective, and will be displayed as part of an illuminated art installation.[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \" title='Online Donation (Monthly)' rel='' href = \"https:\/\/web-centre.spca.org.hk\/fundraise\/paws_new_hope?locale=en\" target='_blank' data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Donation Online Now<\/span><\/a><\/div><div class=\"porto-btn-ctn-right \"><a class=\"porto-btn  vc_custom_1716519909019 porto-adjust-bottom-margin porto-btn-normal porto-btn-no-hover-bg   wpb_custom_03b728fdde96838fed12806e158d8791  porto-btn-right \"  rel='' href = \"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/paws-for-a-new-hope-donation-scheme\/\"  data-hover=\"\" data-border-color=\"\" data-bg=\"\" data-hover-bg=\"\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;color: #0083cb;\"><span class=\"porto-btn-hover\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Know more +<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714355549794{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;cinderella&#8221;][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1713951610597{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/04\/Cinderella-Fund-829&#215;446-v2.jpg?id=21611) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;60px&#8221;][vc_column_text]<\/p>\n<h2>Cinderella Vet Medical Fund<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952590959{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]Support the Cinderella Vet Medical Fund to aid homeless animals facing sudden and critical medical needs. Additionally, the fund aids sick or injured animals whose owners lack the means to cover necessary medical costs.<\/p>\n<p><strong>Your donation will play a crucial role in transforming the lives of animals by giving them the urgent medical care they desperately need.<\/strong>[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \" title='Online Donation (Monthly)' rel='' href = \"\/get-involved\/how-to-donate\/online-donation-monthly\/?fund=cinderella\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online Donation (Monthly)<\/span><\/a><\/div><div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \"  rel='' href = \"\/get-involved\/how-to-donate\/online-donation-one-off\/?fund=cinderella\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online donation (One-off)<\/span><\/a><\/div><div class=\"porto-btn-ctn-right \"><a class=\"porto-btn  vc_custom_1713946999243 porto-adjust-bottom-margin porto-btn-normal porto-btn-no-hover-bg   wpb_custom_03b728fdde96838fed12806e158d8791  porto-btn-right \"  rel='' href = \"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/the-spca-cinderella-vet-medical-fund\/\"  data-hover=\"\" data-border-color=\"\" data-bg=\"\" data-hover-bg=\"\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;color: #0083cb;\"><span class=\"porto-btn-hover\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Know more +<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714355491172{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;CCCP&#8221;][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714355129516{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2023\/02\/Rectangle-148.jpg?id=727) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;60px&#8221;][vc_column_text]<\/p>\n<h2>Cat Colony Care Program<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952590959{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]Established in August 2000, the SPCA&#8217;s Cat Colony Care Program (CCCP) mobilises a dedicated army of volunteers who feed and watch over &#8220;families&#8221; of street cats in Hong Kong.<\/p>\n<p>In the 23 years since the program began, we have desexed more than 61,000 cats helping reduce the number of stray and feral cats in the city dramatically. It is a wonderful example of &#8216;Trap, Neuter and Return&#8217; in action.<\/p>\n<p><strong>Your donation will enable us to expand this wonderful program, allowing us to help more cats in our community.<\/strong>[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \" title='Online Donation (Monthly)' rel='' href = \"\/get-involved\/how-to-donate\/online-donation-monthly\/?fund=cccp\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online Donation (Monthly)<\/span><\/a><\/div><div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \"  rel='' href = \"\/get-involved\/how-to-donate\/online-donation-one-off\/?fund=cccp\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online donation (One-off)<\/span><\/a><\/div><div class=\"porto-btn-ctn-right \"><a class=\"porto-btn  vc_custom_1714355230156 porto-adjust-bottom-margin porto-btn-normal porto-btn-no-hover-bg   wpb_custom_03b728fdde96838fed12806e158d8791  porto-btn-right \"  rel='' href = \"https:\/\/www.spca.org.hk\/what-we-do\/animal-welfare\/animal-welfare-campaigns-and-programs\/cat-colony-care-programme\/\"  data-hover=\"\" data-border-color=\"\" data-bg=\"\" data-hover-bg=\"\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;color: #0083cb;\"><span class=\"porto-btn-hover\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Know more +<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714356640052{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;china_outreach&#8221;][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1714359159357{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/04\/china_outreach_800x500.jpg?id=21832) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;60px&#8221;][vc_column_text]<\/p>\n<h2>China Outreach<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952590959{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]Alongside our work in Hong Kong, we have a multi-dimensional program aimed at improving animal welfare standards on the Mainland.<\/p>\n<p>Our Humane Education pack has been widely distributed to schools and is being used to train teachers on animal welfare topics. We also advise a number of authorities across the country on improving urban animal management and we work closely with public security bureaus.<\/p>\n<p><strong>Your support will help us continue our work in China, bringing about a new era for animal welfare on the Mainland.<\/strong>[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \" title='Online Donation (Monthly)' rel='' href = \"\/get-involved\/how-to-donate\/online-donation-monthly\/?fund=cn_outreach\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online Donation (Monthly)<\/span><\/a><\/div><div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \"  rel='' href = \"\/get-involved\/how-to-donate\/online-donation-one-off\/?fund=cn_outreach\"  data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Online donation (One-off)<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row content_placement=&#8221;middle&#8221; el_class=&#8221;col-padding dona_card&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1719560111474{margin-right: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221; el_id=&#8221;wedding_favours&#8221;][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;10&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; css=&#8221;.vc_custom_1753178238190{background-image: url(https:\/\/www.spca.org.hk\/wp-content\/uploads\/2023\/05\/Wedding-Favour-website-banner2025-800-x-534-1.jpg?id=43156) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;dona_card_left&#8221; animation_type=&#8221;slideInUp&#8221;][vc_empty_space height=&#8221;80px&#8221;][vc_column_text]<\/p>\n<h2>Wedding Favours<\/h2>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][vc_column width=&#8221;1\/2&#8243; animation_delay=&#8221;200&#8243; css=&#8221;.vc_custom_1713952590959{padding-right: 0px !important;padding-left: 0px !important;}&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_class=&#8221;dona_card_right&#8221; animation_type=&#8221;slideInUp&#8221;][vc_row_inner css=&#8221;.vc_custom_1713926922111{margin-right: 0px !important;margin-left: 0px !important;background-color: #f5f9ff !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1713927107554{padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}&#8221;][vc_column_text]At the SPCA, we believe in celebrating love in a meaningful way. Our Wedding Favour donation programme offers couples a unique opportunity to make a lasting impact on animal welfare while celebrating their love. Instead of traditional wedding gifts, you can choose to donate to the SPCA. In return, we express our gratitude by providing customised thank-you cards to commemorate your generosity.[\/vc_column_text][vc_empty_space height=&#8221;10px&#8221;]<div class=\"porto-btn-ctn-center btn-blue\"><a class=\"porto-btn porto-adjust-bottom-margin porto-btn-large porto-btn-left-bg   wpb_custom_71ad70ce9313377a5cdb0fac48019e5e  porto-btn-center \"  rel='' href = \"https:\/\/pure-donate.spca.org.hk\/wedding_favour\/donate?locale=en\" target='_blank' data-hover=\"\" data-border-color=\"\" data-bg=\"#0083cb\" data-hover-bg=\"#60c6ff\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;background: #0083cb;color: #ffffff;\"><span class=\"porto-btn-hover\" style=\"background-color:#60c6ff\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Donate Now<\/span><\/a><\/div><div class=\"porto-btn-ctn-right \"><a class=\"porto-btn  vc_custom_1719559676552 porto-adjust-bottom-margin porto-btn-normal porto-btn-no-hover-bg   wpb_custom_03b728fdde96838fed12806e158d8791  porto-btn-right \"  rel='' href = \"\/get-involved\/how-to-donate\/wedding-favours\/\"  data-hover=\"\" data-border-color=\"\" data-bg=\"\" data-hover-bg=\"\" data-border-hover=\"\" data-shadow-click=\"none\" data-shadow=\"\" style=\"border:none;color: #0083cb;\"><span class=\"porto-btn-hover\"><\/span><span class=\"porto-btn-data porto-btn-text \" >Know more +<\/span><\/a><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_id=&#8221;section-offline-donation&#8221;][vc_column el_class=&#8221;content-title-wtbg&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_empty_space height=&#8221;20px&#8221;][vc_column_text]<\/p>\n<h2>Donating Offline<\/h2>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column is_sticky=&#8221;yes&#8221; sticky_min_width=&#8221;767&#8243; sticky_top=&#8221;110&#8243; sticky_bottom=&#8221;0&#8243; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column_text]Donating online is quick and easy but we know that not everyone feels comfortable doing it. If you want to donate \u2018offline\u2019 we have two ways of paying:[\/vc_column_text][vc_row_inner equal_height=&#8221;yes&#8221;][vc_column_inner width=&#8221;1\/2&#8243;]<div class=\"porto-history wpb_content_element \" data-appear-animation=\"fadeInUp\"><div class=\"featured-box\"><div class=\"box-content\"><h4 class=\"heading-primary\"><strong>01 Donation Forms<\/strong><\/h4><p>You can make a <a href=\"https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/07\/One-Off-Donation_2024.pdf\" target=\"_blank\" rel=\"noopener\"><strong>one-off donation<\/strong><\/a> or set up a <a href=\"https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/07\/Monthly-Donation_2024.pdf\" target=\"_blank\" rel=\"noopener\"><strong>monthly donation<\/strong><\/a>. To do that, simply download and complete one of the forms, and then send it to us at the listed address along with your choice of payment: cheque, bank transfer or credit card.<\/p>\n<\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;]<div class=\"porto-history wpb_content_element \" data-appear-animation=\"fadeInUp\"><div class=\"featured-box\"><div class=\"box-content\"><h4 class=\"heading-primary\"><strong>02 Direct donation<\/strong><\/h4><p>You can send us a donation via direct bank transfer to our savings account at <strong>HSBC: 002-5-240326<\/strong>. Alternatively, if you are a PPS registered account holder, you can dial <a href=\"tel:18031\"><strong>18031<\/strong><\/a> or visit <a href=\"http:\/\/www.ppshk.com\" target=\"_blank\" rel=\"noopener\"><strong>www.ppshk.com<\/strong><\/a> to make donations. You will need to enter the <strong>SPCA merchant code (9457)<\/strong>.<\/p>\n<\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_column_text]If your donation is over HK$100 and you would like an official receipt for tax deduction purposes, please send the payment slip along with the donation form by post or fax to the Customer Growth and Engagement (CRM) Department:[\/vc_column_text][vc_row_inner css=&#8221;.vc_custom_1702264471170{padding-top: 15px !important;padding-right: 15px !important;padding-bottom: 15px !important;padding-left: 15px !important;}&#8221;][vc_column_inner el_class=&#8221;contact-info-box&#8221;][vc_column_text]<\/p>\n<h4>Customer Growth and Engagement (CRM) Department<\/h4>\n<p><i class=\"fas fa-map-marker-alt\"><\/i>Customer Growth and Engagement (CRM) Department, 5\/F, CRM team, Wan Shing Street, Wanchai, Hong Kong<\/p>\n<p><i class=\"fas fa-phone\"><\/i><a href=\"tel:22325510\">(852) 2232 5510<\/a><\/p>\n<p><i class=\"fas fa-print\"><\/i><a href=\"fax:25115590\">(852) 2511 5590<\/a><\/p>\n<p><i class=\"fas fa-envelope\"><\/i><a href=\"mailto:donor@spca.org.hk\">donor@spca.org.hk<\/a>[\/vc_column_text][\/vc_column_inner][\/vc_row_inner][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_id=&#8221;Change-of-Personal-Particulars&#8221;][vc_column el_class=&#8221;content-title-wtbg&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column_text]<\/p>\n<h2>Change of Personal Particulars\/Donation Details<\/h2>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column][vc_column_text]<i class=\"fas fa-download\" style=\"color: #0083cb;\"><\/i> <strong><a href=\"https:\/\/www.spca.org.hk\/wp-content\/uploads\/2024\/07\/CRM_donors_form.pdf\" target=\"_blank\" rel=\"noopener\"> Download Change of Personal Particulars\/Donation Details Form<\/a><\/strong>[\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column][vc_column_text]Donations help us fulfil our mission to help the animals of Hong Kong but it does not qualify donors for Membership and member services. If you wish to become a member, please click <strong><a href=\"https:\/\/www.spca.org.hk\/get-involved\/become-a-member\/\">here<\/a> <\/strong>.[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column][vc_column_text]<a href=\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/donation-faq\/\"><strong>Donation FAQ &gt;<\/strong><\/a>[\/vc_column_text][vc_empty_space height=&#8221;60px&#8221;][\/vc_column][\/vc_row]<\/p>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>[vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221; el_id=&#8221;section-online-donation&#8221;][vc_column el_class=&#8221;content-title-wtbg&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column_text] Make an Online Donation [\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8221;col-padding&#8221; conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_column conditional_render=&#8221;%5B%7B%22value_role%22%3A%22administrator%22%7D%5D&#8221;][vc_row_inner][vc_column_inner][vc_column_text]For more than 100 years, we have relied on the generosity of the public to fund our [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":16,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_tribe_ticket_capacity":"0","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"footnotes":"","_tec_slr_enabled":"","_tec_slr_layout":""},"class_list":["post-34","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to donate - SPCA<\/title>\n<meta name=\"description\" content=\"Make a donation to support animals in need! The SPCA (HK) supports online and offline donations. All donations over HK$100 are eligible for tax deductions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to donate - SPCA\" \/>\n<meta property=\"og:description\" content=\"Make a donation to support animals in need! The SPCA (HK) supports online and offline donations. All donations over HK$100 are eligible for tax deductions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/\" \/>\n<meta property=\"og:site_name\" content=\"SPCA\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-22T09:57:44+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/\",\"url\":\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/\",\"name\":\"How to donate - SPCA\",\"isPartOf\":{\"@id\":\"https:\/\/www.spca.org.hk\/#website\"},\"datePublished\":\"2023-02-14T05:43:36+00:00\",\"dateModified\":\"2025-07-22T09:57:44+00:00\",\"description\":\"Make a donation to support animals in need! The SPCA (HK) supports online and offline donations. All donations over HK$100 are eligible for tax deductions.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9801\",\"item\":\"https:\/\/www.spca.org.hk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get Involved\",\"item\":\"https:\/\/www.spca.org.hk\/get-involved\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to donate\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.spca.org.hk\/#website\",\"url\":\"https:\/\/www.spca.org.hk\/\",\"name\":\"SPCA\",\"description\":\"SPCA - \u9999\u6e2f\u611b\u8b77\u52d5\u7269\u5354\u6703\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.spca.org.hk\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to donate - SPCA","description":"Make a donation to support animals in need! The SPCA (HK) supports online and offline donations. All donations over HK$100 are eligible for tax deductions.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/","og_locale":"en_US","og_type":"article","og_title":"How to donate - SPCA","og_description":"Make a donation to support animals in need! The SPCA (HK) supports online and offline donations. All donations over HK$100 are eligible for tax deductions.","og_url":"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/","og_site_name":"SPCA","article_modified_time":"2025-07-22T09:57:44+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/","url":"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/","name":"How to donate - SPCA","isPartOf":{"@id":"https:\/\/www.spca.org.hk\/#website"},"datePublished":"2023-02-14T05:43:36+00:00","dateModified":"2025-07-22T09:57:44+00:00","description":"Make a donation to support animals in need! The SPCA (HK) supports online and offline donations. All donations over HK$100 are eligible for tax deductions.","breadcrumb":{"@id":"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.spca.org.hk\/get-involved\/how-to-donate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9801","item":"https:\/\/www.spca.org.hk\/"},{"@type":"ListItem","position":2,"name":"Get Involved","item":"https:\/\/www.spca.org.hk\/get-involved\/"},{"@type":"ListItem","position":3,"name":"How to donate"}]},{"@type":"WebSite","@id":"https:\/\/www.spca.org.hk\/#website","url":"https:\/\/www.spca.org.hk\/","name":"SPCA","description":"SPCA - \u9999\u6e2f\u611b\u8b77\u52d5\u7269\u5354\u6703","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.spca.org.hk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"publishpress_future_action":{"enabled":false,"date":"2026-01-13 04:01:31","action":"draft","terms":[],"taxonomy":""},"ticketed":false,"_links":{"self":[{"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/pages\/34","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/comments?post=34"}],"version-history":[{"count":147,"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/pages\/34\/revisions"}],"predecessor-version":[{"id":43247,"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/pages\/34\/revisions\/43247"}],"up":[{"embeddable":true,"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/pages\/16"}],"wp:attachment":[{"href":"https:\/\/www.spca.org.hk\/wp-json\/wp\/v2\/media?parent=34"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}