Frizz free, context-aware, JavaScript modules Building a content based website? Progressively enhancing it with a bit of interactivity? Want to offer different interactivity based on user context? Are you loading that interactivity like this? var elements = Array.from( document.querySelectorAll('.calendar') ); elements.forEach(function(element) { new Calendar(element); }); Maybe dealing with those
