Children in poverty are especially vulnerable and face uncertain futures. Every child’s experience is unique but we all need the same things love, security, health, and wellbeing.
Sponsor a School
Sponsoring a school is an amazing gift. By pledging to raise funds to provide meals for an entire school, you are giving every child enrolled there hope for a brighter future.
Sponsoring kids Aziz Foundation
Education should not be a privilege for the few but a right for every child. Together, we can ensure that the kids in Guinea have access to an education..
Be involved and we humbly hope for your sponsorship
$('.counter').countUp();
$(document).ready(function () {
// Gets the video src from the data-src on each button
var $videoSrc;
$(".video-btn").click(function () {
$videoSrc = $(this).data("src");
});
console.log($videoSrc);
// when the modal is opened autoplay it
$("#myModal").on("shown.bs.modal", function (e) {
// set the video src to autoplay and not to show related video. Youtube related video is like a box of chocolates... you never know what you're gonna get
$("#video").attr(
"src",
$videoSrc + "?autoplay=1&modestbranding=1&showinfo=0"
);
});
// stop playing the youtube video when I close the modal
$("#myModal").on("hide.bs.modal", function (e) {
// a poor man's stop video
$("#video").attr("src", $videoSrc);
});
// document ready
});