ADVERTISEMENT
970x220

Youth vote credited for historic turnout in 2025 midterm polls

Published May 15, 2025 04:07 pm

At A Glance

  • The May 2025 midterm elections in the Philippines recorded the highest voter turnout in the country's midterm history, with 81.65% of registered voters participating, largely credited to the strong turnout of young voters, according to the Commission on Elections (Comelec). Comelec Chairman George Erwin Garcia emphasized that the surge was driven more by civic engagement than technology, attributing it to increased public awareness and trust that votes would count.
The youth vote came out in force during the May 2025 midterm elections, helping drive the highest voter turnout ever recorded for a non-presidential race, according to the Commission on Elections (Comelec).
According to Comelec Chairman George Erwin Garcia, tye May 2025 midterm elections recorded the highest voter turnout in terms Philippine midterm poll history, with an estimated 81.65 percent of registered voters participating, according to poll body's initial unofficial figures.
Garcia attributed this historic turnout — 55.87 million out of 68.43 million registered voters — to the strong participation of young voters and heightened public awareness in the lead-up to the elections.
“Base sa inisyal nating pagtingin, talagang dumagsa ang kabataan sa pagboto (Based on our initial observations, the youth really turned out in large numbers to vote)," he said during a press briefing on Thursday, May 15.
He noted that while voter participation was high across all age groups, the surge in youth involvement played a key role in mobilizing the electorate.The voter turnout came close to the 2022 presidential elections, which saw 84.20 percent turnout (55.43 million voters), highlighting how engaged the public remained even in a non-presidential race.
Garcia also highlighted the success of early voting, particularly among senior citizens and persons with disabilities, citing that over 3 million people had cast their votes in the first two hours of polling, between 5:00 to 7:00 a.m on election day.
While new vote-counting machines were deployed in this election, Garcia said the turnout was less about technology and more about civic engagement.
“Regardless of whether it is a new machine or not… I honestly believe basta mabigyan mo lang ng tamang prinsipyo't issue ang mga kababayan natin, they will go to the polls (Regardless of whether it is a new machine or not… I honestly believe that as long as you give our fellow Filipinos the right principles and issues, they will go to the polls),” he said.
Garcia pointed to Comelec’s sustained public engagement efforts, especially on issues like vote buying, as instrumental in challenging and motivating voters — particularly the youth — to exercise their right to vote.
“Naniwala kasi ang mga kababayan natin na mabibilang ang boto nila (Our fellow citizens believed that their votes would be counted),” he added.
As of Thursday, Garcia said the canvassing of 16 remaining Certificates of Canvass (COCs) was underway, with all local votes already in and only a few overseas precincts pending transmission — including those from Moscow and Iran, where technical limitations required rerouting through embassies in Qatar and Kuwait, respectively.
Assuming the remaining COCs are transmitted by 3:00 p.m. Thursday, proclamation of the winning senatorial candidates is expected by Saturday afternoon, with party-list proclamations to follow by Monday.
If realized, this will mark the fastest official proclamation in Philippine midterm history.
Garcia also reported a smooth and peaceful election process, emphasizing that no failure of elections occurred in any precinct across the country or in any of the 93 overseas posts.
“Again, nagpapasalamat tayo sa lahat-lahat ng workers, teachers, PNP, AFP, ang ating lahat ng tumulong sa Commission ng Elections dahil wala tayo kahit isa na failure of election (Again, we extend our gratitude to all the workers, teachers, the PNP, AFP, and everyone who helped the Commission on Elections, because we did not have a single case of failure of election)," he said.

Related Tags

Comelec Youth May 2025 elections matalinong boto 2025
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.