‘;
});
pollOptions.innerHTML = pollOptionsDom;
pollCount.innerHTML = totalVotes + ‘ votes’;
if (totalVotes > 10) {
pollCount.classList.remove(“hidden”);
}
}
function trackBetsTodayPollImpression() {
var intersectionObserverForArticlePoll = new IntersectionObserver(
function(entries) {
entries.forEach(function(entry) {
var pollId = entry.target.getAttribute(“data-poll-id”);
if (POLLS_BY_ID[pollId][‘impression_tracked’]) return;
if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return;
setTimeout(function() {
if (isInViewport(entry.target)) {
POLLS_BY_ID[pollId][‘impression_tracked’] = true;
var isDesktop = “1”;
var gaPayload = {
“question” : POLLS_BY_ID[pollId][‘question’],
“category”: “NFL”,
“page_url”: window.location.href,
“option1”: POLLS_BY_ID[pollId][‘option1’],
“option2”: POLLS_BY_ID[pollId][‘option2’],
}
if (isDesktop) {
gaPayload[“device”] = “Desktop”;
} else {
gaPayload[“device”] = “Mobile”;
}
gtag(“event”, “BETS_TODAY_POLL_IMPRESSION”, gaPayload);
intersectionObserverForArticlePoll.unobserve(entry.target);
}
}, 1000);
});
},
{
threshold: 0.5
}
);
var pollElements = document.querySelectorAll(‘.bets-today-poll’);
pollElements.forEach(function(pollElement) {
var isAnswered = pollElement.querySelector(“.poll-option-answered”);
if (!isAnswered) {
intersectionObserverForArticlePoll.observe(pollElement);
}
})
}
return {
answerPollX: answerPollX,
};
}();
Looking to predict NFL playoff Scenarios? Try our NFL Playoff Predictor for real-time simulations and stay ahead of the game!
Annah previously shared the reality of NFL friendships during another Q&A session on Instagram earlier this month. The influencer said it’s been tough for her to maintain friendships due to her busy lifestyle and players constantly moving from one team to another.
“This can definitely be tough, especially with such a busy lifestyle,” Annah wrote on Oct. 3. “Being intentional and checking in on your friends is super important! I feel like we are constantly sharing little pieces of our days and milestones of our babies, so we feel connected and close.”
Tua Tagovailoa’s wife Annah opened up about having ‘very superstitious’ nature
When it comes to supporting the Miami Dolphins, Tua Tagovailoa‘s wife, Annah, takes no risks, despite turning “very superstitious.” A fan asked about her game day rituals on Tuesday.
“Not necessarily any rituals!” Annah wrote on Instagram. “Each gameday looks a little different! I try to put the kids in football pjs the night before! I wish I could say I always remember to do this (laughing emoji). I am very superstitious if something is working during the game, I keep it going!”
After losing their Week 6 game to the Chargers 29-27, the Dolphins will face the Cleveland Browns on Sunday at Huntington Bank Field.
Edited by Victor Ramon Galvez