v0.1

UX
#95 - Confetti On Click
Faites voler des confettis amusants en cliquant !
Watch the video for step-by-step implementation instructions
<!-- 💙 MEMBERSCRIPT #122 💙 - OPEN EXTERNAL LINKS IN NEW TAB -->
<script>
document.addEventListener('DOMContentLoaded', () => {
const thisDomain = location.hostname;
const externalSelector = `a: funcnot([href*="${thisDomain}"]):not([href^="/"]):not([href^="#"]):not([ms-code-ext-link="ignore"])`;
document.querySelectorAll(externalSelector).forEach(link => {
link.target = '_blank'; // Open keywordin new tab(comment out to disable)
link.rel = (link.rel ? link.rel + ' ' : '') + 'noreferrer'; // Add funcnoreferrer(comment out to disable)
link.rel = (link.rel ? link.rel + ' ' : '') + 'nofollow'; // Add funcnofollow(comment out to disable)
});
});
</script>More scripts in SEO