Blueprint Club Members Save up to 75% vs Vista: Join Now! Become a Member (502) 934-BLUE
Products & Services
Loading...

Browser Compatibility Check

Note: This utility has been designed for customers that are unsure of whether or not their systems are compatible with our website. If there is an incompatibility in a certain area, this tool will assist you in diagnosing what's wrong and issue potential fixes or workarounds. There is no need to download or install anything. This tool is online based and strictly here to assist you in having a problem free session here at Blue Print Club.


  1. Browser
  2. Cookies
  3. JavaScript


Cookie Check


Session-based Cookies Persistent Cookies
Y

The Cookie Check is another simple test that is performed on your browser to check and see whether or not you have enabled cookies or not for your browser.

document.addEventListener('DOMContentLoaded', function() { // Add fade-in class on load document.body.classList.add('page-fade-in'); // Handle clicks document.addEventListener('click', function(e) { // Find closest anchor tag const link = e.target.closest('a'); if (!link || !link.href) return; // Ignore external links, anchors, or new tabs if (link.target === '_blank' || link.href.indexOf('#') !== -1 || link.href.indexOf('mailto:') !== -1 || link.href.indexOf('tel:') !== -1 || e.ctrlKey || e.metaKey || e.shiftKey) { return; } // Check if same domain const currentDomain = window.location.hostname; const linkDomain = new URL(link.href).hostname; if (currentDomain !== linkDomain) return; // Prevent default and animate e.preventDefault(); document.body.classList.add('page-fade-out'); // Navigate after short delay matches CSS transition setTimeout(function() { window.location.href = link.href; }, 200); }); });