header.png

Location

2057 LAKESHORE OVERLOOK DR
KENESSAW GA 30152

Aziz Foundation For Better Inc

Aziz Foundation is a 501(c)3 tax exempt non profit organization dedicated to fighting against Poverty in Guinea through Education

FOLLOW US

Service Times

MONDAY TO FRIDAY
9 AM TO 5 PM

GET IN TOUCH


Copyrights ©2020.All Right Reserved

$(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 });