Osagie Osahon

The hands-on approach to learning at Makemation has revolutionized the way I understand and apply knowledge. Through interactive projects and real-world experiences, I have developed practical skills that give me a competitive advantage. Our passionate and experienced teachers create a stimulating learning environment that fosters curiosity and a love for learning.

jQuery(document).ready(function() { jQuery("#filterDropdown").change(function() { let selectedCategory = jQuery(this).val(); jQuery(".movie-card").each(function() { if (selectedCategory === "all" || jQuery(this).hasClass(selectedCategory)) { jQuery(this).fadeIn(); } else { jQuery(this).fadeOut(); } }); }); });