Log in / Sign Up
Home
Courses
Popular Categories
Quranic Education
Development
Marketing
IT & Software
Sales Marketing
Data Science Course
Dashboard Pages
My Wishlist
Returns Policy
Term Conditions
Join a community of
professionals
worldwide
Start learning now
Blog
About
Donate to Al Burhan Academy
Explore
Quranic Education
Art & Humanities
Digtal Marketing
Finance & Accounting
Graphic Design
IT and Software
Personal Development
Photohraphy
Sales Marketing
Social Sciences
Web Development
Home
Courses
Popular Categories
Quranic Education
Development
Marketing
IT & Software
Sales Marketing
Data Science Course
Dashboard Pages
My Wishlist
Returns Policy
Term Conditions
Join a community of
professionals
worldwide
Start learning now
Blog
About
Donate to Al Burhan Academy
Home
Donation Failed
We're sorry, your donation failed to process. Please try again or contact site support.
WhatsApp us
// Wait for the DOM to be ready document.addEventListener('DOMContentLoaded', function() { // Get all "Start Now" buttons var enrollButtons = document.querySelectorAll('.lp-button.button-enroll-course');// Loop through each button enrollButtons.forEach(function(button) { // Change button text to "WhatsApp Now" button.textContent = 'WhatsApp Now';// Apply initial styling to match WhatsApp theme button.style.backgroundColor = '#25D366'; // WhatsApp green button.style.color = '#fff'; // White text button.style.padding = '10px 20px'; // Padding button.style.border = 'none'; // No border button.style.borderRadius = '4px'; // Border radius button.style.fontFamily = 'Arial, sans-serif'; // Font button.style.cursor = 'pointer'; // Pointer cursor button.style.animation = 'blinkEffect 1s infinite'; // Apply blinking animation// Add click event listener button.addEventListener('click', function(event) { // Prevent default button behavior event.preventDefault();// Open WhatsApp chat with the specified number window.open('https://wa.me/923497772773', '_blank'); }); });// Add the blinking animation to the document var style = document.createElement('style'); style.innerHTML = ` @keyframes blinkEffect { 0% { background-color: #25D366; color: #fff; } 50% { background-color: black; color: #fff; } 100% { background-color: #25D366; color: #fff; } } `; document.head.appendChild(style); });