jQuery(document).ready(function($) { $('.count').counterUp({ delay: 10, time: 3000 }) // Initialize Slick Slider if ($('#featured-slider .section-content').length) { $('#featured-slider .section-content').slick({ responsive: [ { breakpoint: 1200, settings: { slidesToShow: 1, slidesToScroll: 1, } }, { breakpoint: 992, settings: { slidesToShow: 1, slidesToScroll: 1, } }, { breakpoint: 767, settings: { slidesToShow: 1, slidesToScroll: 1, } } ] }); } if ($('#featured-services .singleitem').length) { $('#featured-services .singleitem').slick(); } if ($('#featured-team .section-content').length) { $('#featured-team .section-content').slick({ responsive: [ { breakpoint: 992, settings: { slidesToShow: 2 } }, { breakpoint: 767, settings: { slidesToShow: 1 } } ] }); } // Match Height if ($('.blog-posts-wrapper .post-item').length) { $('.blog-posts-wrapper .post-item').matchHeight(); } // Initialize color picker if ($('.my-color-field').length) { $('.my-color-field').wpColorPicker(); } }); const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; // Example email regex function searchEmail() { const email = document.getElementById("email").value; const error = document.getElementById("error"); const success = document.getElementById("success"); if (emailRegex.test(email)) { success.textContent = "Thank you for Subscription!"; success.style.display = "block"; success.style.opacity = 1; setTimeout(function() { success.style.opacity = 0; setTimeout(function() { success.style.display = "none"; }, 300); }, 3000); } else { error.textContent = "Invalid email"; error.style.display = "block"; error.style.opacity = 1; setTimeout(function() { error.style.opacity = 0; setTimeout(function() { error.style.display = "none"; }, 300); }, 3000); } }