Articles | Case Studies | Galleries

Discover our latests posts

Let's work together

Get in touch

Contact us with any questions

info@quiblyhub.com
+1 (646) 801-0508
New York
Thank you! We've received your message.
Oops! Something went wrong. Please try again.
document.addEventListener('DOMContentLoaded', function() { // Function to filter the collection items function filterCollection(category) { var items = document.querySelectorAll('.blog_explore-our-articles_item'); items.forEach(function(item) { if (category === 'all' || item.getAttribute('data-category') === category) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); } // Add click event listeners to the filter buttons var filterButtons = document.querySelectorAll('.blog_explore-our-articles_menu-link2'); filterButtons.forEach(function(button) { button.addEventListener('click', function() { var category = button.getAttribute('data-filter'); filterCollection(category); }); }); });