(function(){ fetch('https://akroix.com/wp-content/uploads/2026/09/quizsignoen-estilo.txt').then(function(r){return r.text();}).then(function(css){ var styleTag=document.createElement('style'); styleTag.textContent=css; document.head.appendChild(styleTag); }); var wrap=document.getElementById('zqPostWrapper'); var box=wrap.querySelector('#zqQuizBox'); var ITEMS=[["aries","I make decisions fast, without overthinking them"],["aries","I love competing and hate losing"],["taurus","I'm stubborn and don't like changing my mind"],["taurus","Good food fixes pretty much everything for me"],["gemini","I change the subject mid-conversation without noticing"],["gemini","I get into a ton of things at once"],["cancer","I cry easily at movies, songs, or memories"],["cancer","My home is my favorite place in the world"],["leo","I like being the center of attention, I admit it"],["leo","I'm generous with people I love, sometimes too much"],["virgo","I notice details nobody else catches"],["virgo","I'm way too hard on myself when I mess up"],["libra","I take forever to decide even the simplest things"],["libra","I hate conflict and avoid it at all costs"],["scorpio","I feel everything intensely, there's no in-between"],["scorpio","I keep secrets well and don't share everything about myself"],["sagittarius","I say what I think even when nobody asked"],["sagittarius","I need freedom, rigid routines suffocate me"],["capricorn","I feel guilty when I'm not being productive"],["capricorn","I think about the future before enjoying the present"],["aquarius","I consider myself different from most people I know"],["aquarius","I'd rather have a few real friends than a big crowd"],["pisces","I live a little in my own head, daydreaming"],["pisces","I feel other people's pain almost like it's my own"]]; var html=""; html+='
Check everything that fits you. Check as many as you want.
'; ITEMS.forEach(function(it){ html+=''; }); html+='0 of '+ITEMS.length+' checked
'; html+=''; html+='We\'ll calculate your result and take you to the page with your sign and your lucky days.
'; box.innerHTML=html; var checks=box.querySelectorAll('.zq-item input[type=checkbox]'); var counter=box.querySelector('#zqCounter'); var btn=box.querySelector('#zqSubmitBtn'); var RESULT_PAGE_URL="https://akroix.com/6818/zodiac-sign-test-results/"; function updateCounter(){ var n=0; checks.forEach(function(c){if(c.checked)n++;}); counter.textContent=n+" of "+checks.length+" checked"; if(n>0){ btn.disabled=false; btn.textContent="Find out my sign and my lucky day"; }else{ btn.disabled=true; btn.textContent="Check at least 1 to continue"; } } checks.forEach(function(c){ c.addEventListener('change',updateCounter); }); btn.addEventListener('click',function(){ var tally={}; checks.forEach(function(c){ if(c.checked){ var s=c.getAttribute('data-sign'); tally[s]=(tally[s]||0)+1; } }); var winner=null; var best=-1; var order=["aries","taurus","gemini","cancer","leo","virgo","libra","scorpio","sagittarius","capricorn","aquarius","pisces"]; order.forEach(function(s){ var v=tally[s]||0; if(v>best){ best=v; winner=s; } }); if(!winner)return; window.location.href=RESULT_PAGE_URL+"?signo="+winner; }); })();