Jordan up to 62nd in FIFA rankings

No Image

AMMAN — Jordan climbed two spots to 62nd in the latest FIFA World rankings issued on Thursday.

The Kingdom recently beat the Dominican Republic 3-0 after they held Russia 0-0 in friendlies for the 2026 World Cup. The next matches will be against 80th ranked Bolivia and 66th ranked Albania in October.

Spain, France, Argentina, England, Portugal, Brazil, Netherlands, Belgium, Croatia, Italy lead the world pack. Jordan remained the 9th ranked Asian team and 8th among Arab sides.

Top 10 Asian teams are: Japan 19, Iran 21, South Korea 23, Australia 25, Qatar 53, Uzbekistan 54, Iraq 58, Saudi Arabia 59, Jordan 62, UAE 67. Top Arab teams are: Morocco 11, Egypt 35, Algeria 35, Tunisia 46, Qatar 53, Iraq 58, Saudi Arabia 59, Jordan 62, UAE 67, Oman 78.

Last year, Jordan shot up 17 spots to 70th in February 2024 after their runner-up spot at the Asian Cup finals and have steadily been improving.

Jordan has captured the Asian spotlight after they grabbed second spot behind South Korea in Round 3/Group B qualifying matches to secure a historic first time qualification to the World Cup. In their qualifying journey, Jordan beat Palestine 3-1 twice, held South Korea 1-1 after losing 2-0, held Kuwait 1-1 twice, held Iraq 0-0 before losing1-0, beat Oman 4-0, and 3-0 for the 2026 World Cup.

With 16 more nations participating in the upcoming 2026 World Cup, 18 Asian sides played in three groups in home and away format, with the top two from each group advancing directly to the World Cup while the rest will play Round 4 in two groups with group leaders advancing and a possible ninth team qualifying through intercontinental playoffs. By advancing to Round 3 World Cup qualifiers for the second time in their history they also booked their spot in the next edition of the 2027 Asian Cup.

Since 1986, Jordan played the World Cup qualifiers for the 7th time. The team was on the verge of qualifying to the 2014 World Cup when they advanced to play then FIFA 6th ranked Uruguay in an intercontinental qualifying tie before exiting. Jordan had never reached that far in qualifying with Round 3 being the furthest they reached in other editions. In the latest edition of the qualifiers, Jordan reached Round 3 for the second time in their history while also booking their spot in the next edition of the 2027 Asian Cup.

In 2024, the Kingdom was within reach of being crowned Asian Cup champs for the first time in history, but settled for second in their fifth time at the event after their previous best past performances was reaching the quarterfinals twice.

Jordan’s best ever ranking was in 2004, when they jumped to their best ever FIFA rank of 37th after reaching the Asian Cup quarterfinals and losing to eventual champs Japan. The Kingdom also reached the quarterfinals in 2011, exited the group stages in 2015 and in 2019 made it to the Round of 16.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });