Top 100 Paid Footballers — YebboSports
Top 100 Paid Footballers (2025)
Program brought to you by
YebboSports, a division of
Yebbo.com. Like to the website.
Figures are best-available estimates. Host on your approved domain for AdSense to load. Use the search/sort to explore.
`;
}
function render(list){ $list.innerHTML = list.map((p,i)=>cardHTML(p,i)).join(""); }
render(view);
/* Search + Sort */
$search.addEventListener('input', e=>{
const q = e.target.value.toLowerCase().trim();
const filtered = view.filter(p =>
p.name.toLowerCase().includes(q) ||
p.club.toLowerCase().includes(q) ||
(p.country||"").toLowerCase().includes(q)
);
render(filtered);
});
$sort.addEventListener('change', e=>{
const key = e.target.value;
const sorter = {
salaryDesc:(a,b)=>b.salaryUSD-a.salaryUSD,
salaryAsc:(a,b)=>a.salaryUSD-b.salaryUSD,
nameAsc:(a,b)=>a.name.localeCompare(b.name),
nameDesc:(a,b)=>b.name.localeCompare(a.name),
clubAsc:(a,b)=>a.club.localeCompare(b.club)
}[key] || ((a,b)=>b.salaryUSD-a.salaryUSD);
view = [...view].sort(sorter);
render(view);
});
Comments