CINXE.COM

Taremi wants more of the same from IR Iran

<!doctype html><html lang="en"><head><meta charset="utf-8"><meta content="IE=edge" http-equiv="X-UA-Compatible"><meta content="width=device-width,initial-scale=1" name="viewport"><meta content="#372C76" name="theme-color"><link href="/apple-touch-icon.png?v=3" rel="apple-touch-icon" sizes="180x180"/><link href="/favicon-32x32.png?v=3" rel="icon" sizes="32x32" type="image/png"/><link href="/favicon-16x16.png?v=3" rel="icon" sizes="16x16" type="image/png"/><link href="/favicon.ico?v=3" rel="icon" sizes="16x16"/><link crossorigin="use-credentials" href="/site.webmanifest?v=3" rel="manifest"/><script async src="https://www.googletagmanager.com/gtag/js?id=G-7K62MZYNR4"></script><script>window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-7K62MZYNR4');</script><script>var gigyaLocale = 'en'; var gigyaOrigin = 'web'; var url_en_1 = '/aclelite_fantasy'; var url_en_2 = '/aclelite_matchpredictor'; var url_en_3 = '/acltwo_matchpredictor'; var url_en_4 = '/aq_matchpredictor'; var url_ar_1 = '/aclelite_fantasy_ar'; var url_ar_2 = '/aclelite_matchpredictor_ar'; var url_ar_3 = '/acltwo_matchpredictor_ar'; var url_ar_4 = '/aq_matchpredictor_ar'; if (/(Mac)/i.test(navigator.platform)) { gigyaOrigin += "-mac"; } else if (/(iPhone|iPad)/i.test(navigator.platform)) { gigyaOrigin += "-ios"; } else if (/Win/i.test(navigator.platform)) { gigyaOrigin += "-win"; } else { gigyaOrigin += "-other"; } var gigyaScreen = function (screenSet, startScreen, showBlockerInfo, options) { if (window.location.href.match(/[\.\/]?fantasy[\.\/]?/) !== null) { gigyaOrigin += '-fantasy'; } else if (window.location.href.match(/[\.\/]?predictor[\.\/]?/) !== null) { gigyaOrigin += '-predictor'; } else { gigyaOrigin.replace('-predictor',''); gigyaOrigin.replace('-fantasy',''); } fetch(window.app.config.globalProperties.apiUrl + '/v2/country') .then(function (response) { return response.json(); }) .then(function (data) { if (data.country === 'CN') { if (showBlockerInfo) { gigya.accounts.showScreenSet({ screenSet: 'afc-loginregistration', startScreen: 'blocked', lang: gigyaLocale, authFlow: 'popup', redirectURL: null }); } return; } gigya.accounts.showScreenSet({ screenSet: screenSet, startScreen: startScreen, lang: gigyaLocale, authFlow: 'popup', redirectURL: null, ...options }); }); }; var gigyaLoginScreen = function () { return gigyaScreen('afc-loginregistration', 'gigya-login-screen', true, { onAfterScreenLoad: function (e) { if (e.currentScreen === 'gigya-register-screen') { fillCompetitionsDropDown(); fillClubsDropDown(); fillTeamsDropDown(); } } }); }; function fillTeamsDropDown() { var currentFavTeams = JSON.parse(localStorage.getItem('gigyaProfile'))?.data?.favourite_teams; fetch(window.app.config.globalProperties.apiUrl + '/sportdb-connector/api/v1/favourite/teams?locale=' + gigyaLocale) .then(function (response) { return response.json(); }) .then(function (data) { let i = 0; let elem = null; while (elem = document.getElementsByName('data.favourite_teams[' + i + '].code')[0]) { let currentFavTeamCode = currentFavTeams && currentFavTeams[i] && currentFavTeams[i].code; i++; if (elem.getAttribute('data-filled')) { continue; } while (elem.options.length > 0) { elem.options.remove(0); } elem.options.add(new Option('------', null, true, false)); let teams = new Map(); data.data?.forEach(team => { let teamCode = team.contestantName + '_' + team.gender; let teamName = team.contestantName; if (team.contestantName !== team.country || team.gender === 'W') { teamName += ' ' + (team.gender === 'W' ? 'Women' : 'Men'); } teams.set(teamCode, teamName); }); for (let [teamCode, teamName] of teams) { let isSelected = currentFavTeamCode === teamCode; elem.options.add(new Option(teamName, teamCode, isSelected, isSelected)); } elem.setAttribute('data-filled', '1'); } }); } function fillClubsDropDown() { var currentFavClubs = JSON.parse(localStorage.getItem('gigyaProfile'))?.data?.favourite_clubs; fetch(window.app.config.globalProperties.apiUrl + '/api/sportsData/getTeamsByCountry?locale=' + gigyaLocale) .then(function (response) { return response.json(); }) .then(function (data) { let i = 0; let elem = null; while (elem = document.getElementsByName('data.favourite_clubs[' + i + '].code')[0]) { let currentFavClubCode = currentFavClubs && currentFavClubs[i] && currentFavClubs[i].code; i++; if (elem.getAttribute('data-filled')) { continue; } while (elem.options.length > 0) { elem.options.remove(0); } elem.options.add(new Option('------', null, true, false)); data.forEach(team => { let isSelected = currentFavClubCode === team.code + '_' + team.country; elem.options.add(new Option(team.name.toUpperCase() + ' (' + team.country + ')', team.code + '_' + team.country, isSelected, isSelected)); }); elem.setAttribute('data-filled', '1'); } }); } function fillCompetitionsDropDown() { var currentFavComps = JSON.parse(localStorage.getItem('gigyaProfile'))?.data?.favourite_competitions; fetch(window.app.config.globalProperties.apiUrl + '/api/sportsData/getCompetitions') .then(function (response) { return response.json(); }) .then(function (data) { let i = 0; let elem = null; while (elem = document.getElementsByName('data.favourite_competitions[' + i + '].code')[0]) { let currentFavCompCode = currentFavComps && currentFavComps[i] && currentFavComps[i].code; i++; if (elem.getAttribute('data-filled')) { continue; } while (elem.options.length > 0) { elem.options.remove(0); } elem.options.add(new Option('------', null, true, false)); data.forEach(team => { if (!team.national) { return; } let isSelected = currentFavCompCode === team.id; let teamName = team.locales[gigyaLocale] || team.display; elem.options.add(new Option(teamName, team.id, isSelected, isSelected)); }); elem.setAttribute('data-filled', '1'); } }); } function gigyaShow(className) { document.querySelectorAll('.' + className).forEach(function (e) { e.style.display = 'flex'; }); } function gigyaHide(className) { document.querySelectorAll('.' + className).forEach(function (e) { e.style.display = 'none'; }); } var observer = null; var userData = JSON.parse(localStorage.getItem('gigyaProfile')); var gigyaProfileScreen = function () { gigya.accounts.showScreenSet({ screenSet: 'afc-profile', startScreen: 'gigya-update-profile-screen', lang: gigyaLocale, authFlow: 'popup', redirectURL: null, onAfterScreenLoad: function (e) { if (e.currentScreen === 'gigya-update-profile-screen') { fillCompetitionsDropDown(); fillClubsDropDown(); fillTeamsDropDown(); observer = new MutationObserver(function (mutations) { mutations.forEach(mutation => { if (mutation.addedNodes.length && mutation.addedNodes[0].nodeName === 'DIV' && mutation.addedNodes[0].className === 'gigya-array-template') { fillCompetitionsDropDown(); fillClubsDropDown(); fillTeamsDropDown(); } }); }); observer.observe(document.getElementById('gigya-profile-form'), {childList: true, subtree: true}); } }, onAfterSubmit: function (e) { if (e.form === 'gigya-profile-form' && e.data) { localStorage.setItem('gigyaProfile', JSON.stringify({ uid: userData.uid, data: e.data || userData.data, profile: e.profile || userData.profile, subscriptions: e.subscriptions || userData.subscriptions })); } else if (e.data) { } }, }); }; var gigyaLogout = function () { gigya.accounts.logout(); localStorage.removeItem('gigyaProfile'); gigyaHide('gigya_profile'); gigyaShow('gigya_login'); }; function gigyaDelete() { console.log('deleting account ...'); let userData = JSON.parse(localStorage.getItem('gigyaProfile')); gigyaLogout(); fetch(window.app.config.globalProperties.apiUrl + '/v1/sap/delete?uid=' + userData.uid) .then(function (response) { console.log(response); document.location.href = document.location.href; }); } async function gigyaPrepare() { if (window.location.href.match(/\/[a-z]{2}\//)) { gigyaLocale = window.location.href.match(/\/[a-z]{2}\//)[0].substr(1, 2); } else { gigyaLocale = 'en'; } await gigya.hasSession().then(function (res) { if (!res) { localStorage.removeItem('gigyaProfile'); userData = null; gigyaHide('gigya_profile'); gigyaShow('gigya_login'); } else { gigyaHide('gigya_login'); gigyaShow('gigya_profile'); } }); } // IMPORTANT: window.__gigyaConf property must be defined BEFORE gigya.js is included // eslint-disable-next-line no-underscore-dangle window.__gigyaConf = { autoLogin: true, sessionExpiration: -2, onGigyaServiceReady: function () { console.log('global onGigyaServiceReady'); elem = document.createElement('script'); elem.setAttribute('src', 'https://cdn.gigya-ext.com/screenset-validation.min.js'); elem.setAttribute('type', 'text/javascript'); elem.setAttribute('defer', true); document.body.appendChild(elem); gigyaPrepare(); gigya.accounts.addEventHandlers({ onLogin: function (r) { gigyaHide('gigya_login'); gigyaShow('gigya_profile'); gigya.accounts.getAccountInfo( { include: 'subscriptions', callback: function (accountInfoRet) { localStorage.setItem('gigyaProfile', JSON.stringify({ uid: r.UID, data: r.data, profile: r.profile, subscriptions: accountInfoRet.subscriptions })); userData = JSON.parse(localStorage.getItem('gigyaProfile')); } } ); }, onLogout: function (r) { }, }); const popupName = 'afc_popup2_timestamp'; const popupInterval = 72; // hours const lastPopupTimestamp = localStorage.getItem(popupName); const userTimestamp = new Date().getTime(); const timeDiffInMs = (userTimestamp - lastPopupTimestamp); const timeDiffInHours = timeDiffInMs / (1000 * 60 * 60); let showPopupForLoggedInUsers = true; if (userData?.uid && userData?.subscriptions?.afc?.email?.isSubscribed && userData?.subscriptions?.afc?.partners?.email?.isSubscribed) { showPopupForLoggedInUsers = false; } if (userData?.uid && userData?.data?.do_not_show_popup) { showPopupForLoggedInUsers = false; } showPopupForLoggedInUsers = true; // fixed for image-slider instead of newsletter popup if (window.app.config.globalProperties.enableCrmPopup === 'true' && (lastPopupTimestamp === null || timeDiffInHours > popupInterval) && !window.location.href.match(/\/webview\//) && showPopupForLoggedInUsers) { console.info('popup fired'); //var gigyaLocale = window.location.href.match(/\/[a-z]{2}\//)[0].substr(1, 2); /* if (window.app.config.globalProperties.nodeEnv === 'production') { // eslint-disable-next-line no-undef gigyaScreen('AFC-LiteRegistrationProd', 'gigya-subscribe-with-email-screen-prod', false, {lang: gigyaLocale}); } else { // eslint-disable-next-line no-undef gigyaScreen('AFC-LiteRegistrationNonProd', 'gigya-subscribe-with-email-screen-non-prod', false, {lang: gigyaLocale}); } */ } }, validation: { // formData contains all information user has entered // eventType is either "change" or "submit" // callback is optional, you can use it for asynchronous validation or just use return // Validate each screen separately // eslint-disable-next-line no-unused-vars // PROD Final ScreenSets 'gigya-subscribe-with-email-screen-prod': (formData, eventType, callback) => { const errors = {}; // Make checkbox mandatory if (!formData['subscriptions.afc.email.isSubscribed']) { // Checkboxes don't have error messages. errors['subscriptions.afc.email.isSubscribed'] = true; } // You can return errors OR use callback for validation via AJAX. // return errors; eventType.addEventListener('change', callback(errors), false); }, // PROD (DEV/STG) ScreenSets 'gigya-subscribe-with-email-fixed-screen-prod': (formData, eventType, callback) => { const errors = {}; // Make checkbox mandatory if (!formData['subscriptions.afc.email.isSubscribed']) { // Checkboxes don't have error messages. errors['subscriptions.afc.email.isSubscribed'] = true; } // You can return errors OR use callback for validation via AJAX. // return errors; eventType.addEventListener('change', callback(errors), false); }, // NON-PROD (DEV/STG) ScreenSets 'gigya-subscribe-with-email-fixed-screen-non-prod': (formData, eventType, callback) => { const errors = {}; // Make checkbox mandatory if (!formData['subscriptions.afc.email.isSubscribed']) { // Checkboxes don't have error messages. errors['subscriptions.afc.email.isSubscribed'] = true; } // You can return errors OR use callback for validation via AJAX. // return errors; eventType.addEventListener('change', callback(errors), false); }, }, };</script><script defer="defer" lang="javascript">var gigyaLoader = setInterval(function () { if (!window.app || !window.app.config) { return; } clearInterval(gigyaLoader); var elem = document.createElement('script'); elem.setAttribute('src', 'https://cdns.eu1.gigya.com/js/gigya.js?apikey=' + window.app.config.globalProperties.gigyaApiKey); elem.setAttribute('type', 'text/javascript'); elem.setAttribute('defer', true); document.body.appendChild(elem); }, 200);</script><script defer="defer" src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/4.1.1/lazysizes.min.js"></script><script defer="defer" type="module" src="/js/runtime.88b47d12.js"></script><script defer="defer" type="module" src="/js/442.931220bf.js"></script><script defer="defer" type="module" src="/js/app.db92834c.js"></script><script defer="defer" type="module" src="/js/basic.954fb259.js"></script><script defer="defer" type="module" src="/js/basicRTL.45a83fe3.js"></script><script defer="defer" type="module" src="/js/club-afc-champions-league.2eb2a843.js"></script><script defer="defer" type="module" src="/js/club-afc-cup.6932fce1.js"></script><script defer="defer" type="module" src="/js/club-brand.0c6c1cc6.js"></script><script defer="defer" type="module" src="/js/national-afc-asian-cup.efd4757b.js"></script><script defer="defer" type="module" src="/js/national-afc-fifa-world-cup.89f86ac6.js"></script><script defer="defer" type="module" src="/js/national-afc-fifa-world-cup-final.002a1cbc.js"></script><script defer="defer" type="module" src="/js/national-afc-u17-asian-cup.b40d4291.js"></script><script defer="defer" type="module" src="/js/national-afc-asian-cup-qatar-2023.460e0302.js"></script><script defer="defer" type="module" src="/js/national-afc-u20-asian-cup.57e16d4f.js"></script><script defer="defer" type="module" src="/js/national-afc-beach-soccer-asian-cup.838a8376.js"></script><script defer="defer" type="module" src="/js/national-afc-asian-qualifiers.7035cce8.js"></script><script defer="defer" type="module" src="/js/national-afc-u23-asian-cup.16ba6fc5.js"></script><script defer="defer" type="module" src="/js/national-afc-u17-womens-asian-cup.86b0842f.js"></script><script defer="defer" type="module" src="/js/national-afc-futsal-asian-cup.ed8aef4e.js"></script><script defer="defer" type="module" src="/js/club-afc-womens-champions-league.b624150f.js"></script><script defer="defer" type="module" src="/js/club-afc-champions-league-elite.e036e8dd.js"></script><script defer="defer" type="module" src="/js/club-afc-champions-league-two.7c8108c9.js"></script><script defer="defer" type="module" src="/js/club-afc-challenge-league.a5307cd3.js"></script><script defer="defer" type="module" src="/js/national-afc-womens-asian-cup.5a54bb5e.js"></script><script defer="defer" type="module" src="/js/national-afc-fifa-womens-world-cup.2d96df55.js"></script><script defer="defer" type="module" src="/js/national-afc-u20-womens-asian-cup.15adab70.js"></script><script defer="defer" type="module" src="/js/neutral.8c21df59.js"></script><link href="/css/442.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/app.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/basic.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/basicRTL.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/club-afc-champions-league.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/club-afc-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/club-brand.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-fifa-world-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-fifa-world-cup-final.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-u17-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-asian-cup-qatar-2023.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-u20-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-beach-soccer-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-asian-qualifiers.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-u23-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-u17-womens-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-futsal-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/club-afc-womens-champions-league.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/club-afc-champions-league-elite.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/club-afc-champions-league-two.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/club-afc-challenge-league.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-womens-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-fifa-womens-world-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/national-afc-u20-womens-asian-cup.afbb6788ddff9e32.css" rel="stylesheet"><link href="/css/neutral.afbb6788ddff9e32.css" rel="stylesheet"><script defer="defer" src="/js/runtime-legacy.85b4985f.js" nomodule></script><script defer="defer" src="/js/9804-legacy.9496587d.js" nomodule></script><script defer="defer" src="/js/app-legacy.afa12bc9.js" nomodule></script><script defer="defer" src="/js/basic-legacy.954fb259.js" nomodule></script><script defer="defer" src="/js/basicRTL-legacy.45a83fe3.js" nomodule></script><script defer="defer" src="/js/club-afc-champions-league-legacy.2eb2a843.js" nomodule></script><script defer="defer" src="/js/club-afc-cup-legacy.6932fce1.js" nomodule></script><script defer="defer" src="/js/club-brand-legacy.0c6c1cc6.js" nomodule></script><script defer="defer" src="/js/national-afc-asian-cup-legacy.efd4757b.js" nomodule></script><script defer="defer" src="/js/national-afc-fifa-world-cup-legacy.89f86ac6.js" nomodule></script><script defer="defer" src="/js/national-afc-fifa-world-cup-final-legacy.002a1cbc.js" nomodule></script><script defer="defer" src="/js/national-afc-u17-asian-cup-legacy.b40d4291.js" nomodule></script><script defer="defer" src="/js/national-afc-asian-cup-qatar-2023-legacy.460e0302.js" nomodule></script><script defer="defer" src="/js/national-afc-u20-asian-cup-legacy.57e16d4f.js" nomodule></script><script defer="defer" src="/js/national-afc-beach-soccer-asian-cup-legacy.838a8376.js" nomodule></script><script defer="defer" src="/js/national-afc-asian-qualifiers-legacy.7035cce8.js" nomodule></script><script defer="defer" src="/js/national-afc-u23-asian-cup-legacy.16ba6fc5.js" nomodule></script><script defer="defer" src="/js/national-afc-u17-womens-asian-cup-legacy.86b0842f.js" nomodule></script><script defer="defer" src="/js/national-afc-futsal-asian-cup-legacy.ed8aef4e.js" nomodule></script><script defer="defer" src="/js/club-afc-womens-champions-league-legacy.b624150f.js" nomodule></script><script defer="defer" src="/js/club-afc-champions-league-elite-legacy.e036e8dd.js" nomodule></script><script defer="defer" src="/js/club-afc-champions-league-two-legacy.7c8108c9.js" nomodule></script><script defer="defer" src="/js/club-afc-challenge-league-legacy.a5307cd3.js" nomodule></script><script defer="defer" src="/js/national-afc-womens-asian-cup-legacy.5a54bb5e.js" nomodule></script><script defer="defer" src="/js/national-afc-fifa-womens-world-cup-legacy.2d96df55.js" nomodule></script><script defer="defer" src="/js/national-afc-u20-womens-asian-cup-legacy.15adab70.js" nomodule></script><script defer="defer" src="/js/neutral-legacy.8c21df59.js" nomodule></script><meta property="twitter:card" content="summary_large_image"> <meta property="twitter:title" content="Taremi wants more of the same from IR Iran"> <meta property="twitter:image" content="https://assets.the-afc.com/migration/x/g/xgnm7l8yhq5vd104uuio.jpg"> <meta property="twitter:description" content="Abu Dhabi: Islamic Republic of Iran forward Mehdi Taremi is hoping that his side’s 5-0 win over Yemen in their AFC Asian Cup UAE 2019 opening encounter is just the start of things to come."> <meta property="twitter:site" content="@afc"> <meta property="twitter:creator" content="@afc"> <meta property="twitter:domain" content="www.the-afc.com"> <meta property="og:title" content="Taremi wants more of the same from IR Iran"> <meta property="og:description" content="Abu Dhabi: Islamic Republic of Iran forward Mehdi Taremi is hoping that his side’s 5-0 win over Yemen in their AFC Asian Cup UAE 2019 opening encounter is just the start of things to come."> <meta property="og:type" content="website"> <meta property="og:url" content="/en/national/afc_asian_cup/news/taremi_wants_more_of_the_same_from_ir_iran.html"> <meta property="og:site_name" content="the-AFC"> <meta property="og:locale" content="en-GB"> <meta property="og:image" content="https://assets.the-afc.com/migration/x/g/xgnm7l8yhq5vd104uuio.jpg"> <meta property="og:image:width" content="1600"> <meta property="og:image:height" content="900"> <meta property="og:image:type" content="jpg"> <title>Taremi wants more of the same from IR Iran</title> <meta name="description" content="Abu Dhabi: Islamic Republic of Iran forward Mehdi Taremi is hoping that his side’s 5-0 win over Yemen in their AFC Asian Cup UAE 2019 opening encounter is just the start of things to come."> <link rel="alternate" hreflang="ar" href="https://www.the-afc.com/ar/national/afc_asian_cup.html"/> </head><body><div id="app"></div><img class='pixel' src='/pixel/en/national/afc_asian_cup/news/taremi_wants_more_of_the_same_from_ir_iran.html.png'/> <h1 class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/news/taremi_wants_more_of_the_same_from_ir_iran.html">Taremi wants more of the same from IR Iran</a></h1> <p class="seo-footer">Thu, 28 Oct, 2021</p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/x/g/xgnm7l8yhq5vd104uuio.jpg"></p> <h2 class="seo-footer">Taremi wants more of the same from IR Iran</h2> <p class="seo-footer"><strong class="seo-footer">Abu Dhabi: Islamic Republic of Iran forward Mehdi Taremi is hoping that his side’s 5-0 win over Yemen in their AFC Asian Cup UAE 2019 opening encounter is just the start of things to come.</strong></p> <div class="seo-footer"><p>The 26-year-old Al Gharafa favourite scored twice on a night when the three-time Asian champions were rarely troubled by opponents making their debut in the competition as a unified nation.</p> <p>Iran’s impressive victory saw them assume pole position in Group D, a flying start that Taremi believes will stand his side in good stead going forward.</p></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "Taremi wants more of the same from IR Iran", "articleBody": "<p>The 26-year-old Al Gharafa favourite scored twice on a night when the three-time Asian champions were rarely troubled by opponents making their debut in the competition as a unified nation.</p>\n<p>Iran\u2019s impressive victory saw them assume pole position in Group D, a flying start that Taremi believes will stand his side in good stead going forward.</p>", "headline": "Taremi wants more of the same from IR Iran", "description": "Abu Dhabi: Islamic Republic of Iran forward Mehdi Taremi is hoping that his side\u2019s 5-0 win over Yemen in their AFC Asian Cup UAE 2019 opening encounter is just the start of things to come.", "author": { "@type": "Organization", "url": "https://www.the-afc.com/", "name": "the AFC" }, "image": "https://assets.the-afc.com/migration/x/g/xgnm7l8yhq5vd104uuio.jpg", "isAccessibleForFree": true, "datePublished": "2019-01-09", "url": "www.the-afc.com/en/national/afc_asian_cup/news/taremi_wants_more_of_the_same_from_ir_iran.html" }</script> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Thing", "name": null }</script> <p class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/video/group_d_matchday_1_ir_iran_vs_yemen.html">www.the-afc.com/en/national/afc_asian_cup/video/group_d_matchday_1_ir_iran_vs_yemen.html</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/122b4515-e41b-4dbb-a8d0-60164abbba7b.jpg?v=20210423090836"></p> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "VideoObject", "image": "https://ott.the-afc.com/image/1920x1080/122b4515-e41b-4dbb-a8d0-60164abbba7b.jpg?v=20210423090836", "name": "Group D Matchday 1: IR Iran vs Yemen", "thumbnailUrl": "https://ott.the-afc.com/image/1920x1080/122b4515-e41b-4dbb-a8d0-60164abbba7b.jpg?v=20210423090836", "uploadDate": "2019-01-08T03:43:03.000000Z", "description": "video" }</script> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Thing", "name": null }</script> <p class="seo-footer"><a href="www.the-afc.com/en/more/photo/mehdi_taremi-iran-celebrate.html">www.the-afc.com/en/more/photo/mehdi_taremi-iran-celebrate.html</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/c/i/cijpjjv7svaxyymudgp6.jpg"></p> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Thing", "name": null, "image": "https://assets.the-afc.com/migration/c/i/cijpjjv7svaxyymudgp6.jpg" }</script> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Thing", "name": null }</script> <h1 class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/news/quieroz_praises_ir_iran_focus_after_flying_start.html">Quieroz praises IR Iran focus after flying start</a></h1> <p class="seo-footer">Thu, 28 Oct, 2021</p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/e/s/eskassqbbqcpyb3zifny.jpg"></p> <h2 class="seo-footer">Quieroz praises IR Iran focus after flying start</h2> <p class="seo-footer"><strong class="seo-footer">Abu Dhabi: Islamic Republic of Iran head coach Carlos Quieroz believes the impressive focus shown by his side played a major role in Monday’s 5-0 win over Yemen at the AFC Asian Cup UAE 2019.</strong></p> <div class="seo-footer"><p>In a tournament that has already witnessed several surprise results – notably Jordan’s defeat of Australia – the Portuguese tactician was thankful that the three-time champions of Asia avoided any sort of upset at the start of their Group D campaign.</p> <p>Instead, Mehdi Taremi’s brace along with goals from Ashkan Dejagah, Sardar Azmoun and Saman Ghoddos helped seal a relativy straightforward victory and a provide a perfect start to Team Melli’s 14th AFC Asian Cup campaign.</p></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "Quieroz praises IR Iran focus after flying start", "articleBody": "<p>In a tournament that has already witnessed several surprise results \u2013 notably Jordan\u2019s defeat of Australia \u2013 the Portuguese tactician was thankful that the three-time champions of Asia avoided any sort of upset at the start of their Group D campaign.</p>\n<p>Instead, Mehdi Taremi\u2019s brace along with goals from Ashkan Dejagah, Sardar Azmoun and Saman Ghoddos helped seal a relativy straightforward victory and a provide a perfect start to Team Melli\u2019s 14th AFC Asian Cup campaign.</p>", "headline": "Quieroz praises IR Iran focus after flying start", "description": "Abu Dhabi: Islamic Republic of Iran head coach Carlos Quieroz believes the impressive focus shown by his side played a major role in Monday\u2019s 5-0 win over Yemen at the AFC Asian Cup UAE 2019.", "author": { "@type": "Organization", "url": "https://www.the-afc.com/", "name": "the AFC" }, "image": "https://assets.the-afc.com/migration/e/s/eskassqbbqcpyb3zifny.jpg", "isAccessibleForFree": true, "datePublished": "2019-01-08", "url": "www.the-afc.com/en/national/afc_asian_cup/news/quieroz_praises_ir_iran_focus_after_flying_start.html" }</script> <h1 class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/news/group_d_ir_iran_5-0_yemen.html">Group D: IR Iran 5-0 Yemen</a></h1> <p class="seo-footer">Thu, 28 Oct, 2021</p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/w/u/wugqlp3k0btsdeugcusg.jpg"></p> <h2 class="seo-footer">Group D: IR Iran 5-0 Yemen</h2> <p class="seo-footer"><strong class="seo-footer">Abu Dhabi: A scintillating display from start to finish saw the Islamic Republic of Iran beat Yemen 5-0 on Monday to begin their AFC Asian Cup UAE 2019 campaign in fine style. </strong></p> <div class="seo-footer"><p>Mehdi Taremi scored twice as the three-time AFC Asian Cup champions, who reached the quarter-finals last time out in Australia, excelled throughout and underlined their title credentials in what is their 14th consecutive appearance at Asia’s premier competition.</p> <p>Iran’s success sees them go top of the Group D standings ahead of Tuesday’s encounter between fellow group hopefuls Iraq and Vietnam.</p></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "Group D: IR Iran 5-0 Yemen", "articleBody": "<p>Mehdi Taremi scored twice as the three-time AFC Asian Cup champions, who reached the quarter-finals last time out in Australia, excelled throughout and underlined their title credentials in what is their 14th consecutive appearance at Asia\u2019s premier competition.</p>\n<p>Iran\u2019s success sees them go top of the Group D standings ahead of Tuesday\u2019s encounter between fellow group hopefuls Iraq and Vietnam.</p>", "headline": "Group D: IR Iran 5-0 Yemen", "description": "Abu Dhabi: A scintillating display from start to finish saw the Islamic Republic of Iran beat Yemen 5-0 on Monday to begin their AFC Asian Cup UAE 2019 campaign in fine style.\u00a0", "author": { "@type": "Organization", "url": "https://www.the-afc.com/", "name": "the AFC" }, "image": "https://assets.the-afc.com/migration/w/u/wugqlp3k0btsdeugcusg.jpg", "isAccessibleForFree": true, "datePublished": "2019-01-08", "url": "www.the-afc.com/en/national/afc_asian_cup/news/group_d_ir_iran_5-0_yemen.html" }</script> <h1 class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/news/preview_-_group_d_ir_iran_v_yemen.html">Preview - Group D: IR Iran v Yemen</a></h1> <p class="seo-footer">Thu, 28 Oct, 2021</p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/j/c/jcvldnz3jnbvx1b8d3pn.jpg"></p> <h2 class="seo-footer">Preview - Group D: IR Iran v Yemen</h2> <p class="seo-footer"><strong class="seo-footer">Abu Dhabi: Islamic Republic of Iran won't make the mistake of underestimating Yemen while the tournament debutants won't be overawed when facing one of the Continent's biggest teams in their AFC Asian Cup Group D opener at the Mohammed bin Zayed Stadium on Monday.</strong></p> <div class="seo-footer"><p>Iran are chasing a fourth AFC Asian Cup title, but their first since 1976, while Yemen are determined to make their qualification for the tournament for the first time since unification one to remember.</p> <p>Iran head coach Carlos Queiroz showed a glimpse of what Iran's approach will be in the tournament when he said that for the moment, the only match that matters is against Yemen.</p> <p>It is a sensible approach as the largest and best ever AFC Asian Cup has already seen its first major upset with Jordan stunning defending champions Australia 1-0 in their Group B opener on Sunday.</p></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "Preview - Group D: IR Iran v Yemen", "articleBody": "<p>Iran are chasing a fourth AFC Asian Cup title, but their first since 1976, while Yemen are determined to make their qualification for the tournament for the first time since unification one to remember.</p>\n<p>Iran head coach Carlos Queiroz showed a glimpse of what Iran's approach will be in the tournament when he said that for the moment, the only match that matters is against Yemen.</p>\n<p>It is a sensible approach as the largest and best ever AFC Asian Cup has already seen its first major upset with Jordan stunning defending champions Australia 1-0 in their Group B opener on Sunday.</p>", "headline": "Preview - Group D: IR Iran v Yemen", "description": "Abu Dhabi: Islamic Republic of Iran won't make the mistake of underestimating Yemen while the tournament debutants won't be overawed when facing one of the Continent's biggest teams in their AFC Asian Cup Group D opener at the Mohammed bin Zayed Stadium on Monday.", "author": { "@type": "Organization", "url": "https://www.the-afc.com/", "name": "the AFC" }, "image": "https://assets.the-afc.com/migration/j/c/jcvldnz3jnbvx1b8d3pn.jpg", "isAccessibleForFree": true, "datePublished": "2019-01-07", "url": "www.the-afc.com/en/national/afc_asian_cup/news/preview_-_group_d_ir_iran_v_yemen.html" }</script> <h1 class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/news/schröck_we_did_ourselves_proud.html">Schröck: We did ourselves proud</a></h1> <p class="seo-footer">Thu, 28 Oct, 2021</p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/m/3/m3vnbc8rjhkxzqhfhrfl.jpg"></p> <h2 class="seo-footer">Schröck: We did ourselves proud</h2> <p class="seo-footer"><strong class="seo-footer">Dubai: Philippines midfielder Stephan Shröck was full of pride after his side pushed highly-fancied Korea Republic all the way, before ultimately falling to a 1-0 defeat in their first ever AFC Asian Cup Finals match.</strong></p> <div class="seo-footer"><p>The Azkals defied pre-match predictions of an easy Korea Republic victory, frustrating the 2015 runners-up before Gamba Osaka front man Hwang Ui-jo finally settled the tie in the 67th minute.</p> <p>Following the match at Al Maktoum Stadium, Shrock told <strong><em>the-AFC.com</em></strong> he was satisfied with his side's performance.</p></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "Schr\u00f6ck: We did ourselves proud", "articleBody": "<p>The Azkals defied pre-match predictions of an easy Korea Republic victory, frustrating the 2015 runners-up before Gamba Osaka front man Hwang Ui-jo finally settled the tie in the 67th minute.</p>\n<p>Following the match at Al Maktoum Stadium, Shrock told <strong><em>the-AFC.com</em></strong> he was satisfied with his side's performance.</p>", "headline": "Schr\u00f6ck: We did ourselves proud", "description": "Dubai: Philippines midfielder Stephan Shr\u00f6ck was full of pride after his side pushed highly-fancied Korea Republic all the way, before ultimately falling to a 1-0 defeat in their first ever AFC Asian Cup Finals match.", "author": { "@type": "Organization", "url": "https://www.the-afc.com/", "name": "the AFC" }, "image": "https://assets.the-afc.com/migration/m/3/m3vnbc8rjhkxzqhfhrfl.jpg", "isAccessibleForFree": true, "datePublished": "2019-01-08", "url": "www.the-afc.com/en/national/afc_asian_cup/news/schr\u00f6ck_we_did_ourselves_proud.html" }</script> <h1 class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/news/pep_talk_does_the_trick_for_china_pr.html">Pep talk does the trick for China PR</a></h1> <p class="seo-footer">Thu, 28 Oct, 2021</p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/y/h/yhhnplri9o3jx5d8e9hr.jpg"></p> <h2 class="seo-footer">Pep talk does the trick for China PR</h2> <p class="seo-footer"><strong class="seo-footer">Al Ain: Marcello Lippi revealed a half-time dressing down for his players helped spark their second half comeback against Kyrgyz Republic as China notched up a 2-1 win over the AFC Asian Cup debutants on Monday afternoon.</strong></p> <div class="seo-footer"><p>Yu Dabao scored with 12 minutes remaining to give the Chinese all three points in the Group C clash after Akhlidin Israilov had put Kyrgyz Republic ahead three minutes before the break, only for an own goal from goalkeeper Pavel Matiash to allow China to pull level.</p> <p>Lippi’s team showed a marked improvement in the second half having been second-best in the opening 45 minutes and the former Juventus and Italy coach was puzzled by his team’s lacklustre display in the first half.</p></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "Pep talk does the trick for China PR", "articleBody": "<p>Yu Dabao scored with 12 minutes remaining to give the Chinese all three points in the Group C clash after Akhlidin Israilov had put Kyrgyz Republic ahead three minutes before the break, only for an own goal from goalkeeper Pavel Matiash to allow China to pull level.</p>\n<p>Lippi\u2019s team showed a marked improvement in the second half having been second-best in the opening 45 minutes and the former Juventus and Italy coach was puzzled by his team\u2019s lacklustre display in the first half.</p>", "headline": "Pep talk does the trick for China PR", "description": "Al Ain: Marcello Lippi revealed a half-time dressing down for his players helped spark their second half comeback against Kyrgyz Republic as China notched up a 2-1 win over the AFC Asian Cup debutants on Monday afternoon.", "author": { "@type": "Organization", "url": "https://www.the-afc.com/", "name": "the AFC" }, "image": "https://assets.the-afc.com/migration/y/h/yhhnplri9o3jx5d8e9hr.jpg", "isAccessibleForFree": true, "datePublished": "2019-01-08", "url": "www.the-afc.com/en/national/afc_asian_cup/news/pep_talk_does_the_trick_for_china_pr.html" }</script> <h1 class="seo-footer"><a href="www.the-afc.com/en/national/afc_asian_cup/news/match-winner_hwang_we_can_get_better.html">Match-winner Hwang: We can get better</a></h1> <p class="seo-footer">Thu, 28 Oct, 2021</p> <p class="seo-footer"><img src="https://assets.the-afc.com/migration/n/t/ntc0bsqn3wxxwjd6swxr.jpg"></p> <h2 class="seo-footer">Match-winner Hwang: We can get better</h2> <p class="seo-footer"><strong class="seo-footer">Dubai: Hwang Ui-jo insists that Korea Republic will improve as the tournament goes on after the Taeguk Warriors claimed a hard-fought 1-0 victory over the Philippines in their opening AFC Asian Cup UAE 2019 Group C match at Al Maktoum Stadium on Monday.</strong></p> <div class="seo-footer"><p>The two-time winners went into the game as heavy favourites but debutants Philippines, under Swedish coach Sven-Goran Eriksson, proved resolute in the opening 45 minutes, frustrating a frontline led by the 2018 Asian Games’ top scorer Hwang.</p> <p>Korea Republic sought to break the deadlock after the interval but the Philippines almost gave them a scare when Javier Patino wasted a good opportunity, before the East Asians scored the only goal of the game midway through the half when Hwang opened his account with a close-range finish.</p></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "Match-winner Hwang: We can get better", "articleBody": "<p>The two-time winners went into the game as heavy favourites but debutants Philippines, under Swedish coach Sven-Goran Eriksson, proved resolute in the opening 45 minutes, frustrating a frontline led by the 2018 Asian Games\u2019 top scorer Hwang.</p>\n<p>Korea Republic sought to break the deadlock after the interval but the Philippines almost gave them a scare when Javier Patino wasted a good opportunity, before the East Asians scored the only goal of the game midway through the half when Hwang opened his account with a close-range finish.</p>", "headline": "Match-winner Hwang: We can get better", "description": "Dubai: Hwang Ui-jo insists that Korea Republic will improve as the tournament goes on after the Taeguk Warriors claimed a hard-fought 1-0 victory over the Philippines in their opening AFC Asian Cup UAE 2019 Group C match at Al Maktoum Stadium on Monday.", "author": { "@type": "Organization", "url": "https://www.the-afc.com/", "name": "the AFC" }, "image": "https://assets.the-afc.com/migration/n/t/ntc0bsqn3wxxwjd6swxr.jpg", "isAccessibleForFree": true, "datePublished": "2019-01-08", "url": "www.the-afc.com/en/national/afc_asian_cup/news/match-winner_hwang_we_can_get_better.html" }</script> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "SiteNavigationElement", "name": "AFC Asian Cup", "url": "/en/national/afc_asian_cup.html" }</script> <script type="text/javascript"> const elements = document.getElementsByClassName("seo-footer"); for(let element of elements) { element.style.display = "none" } document.getElementsByClassName("pixel")[0].style.display = "none"; </script> </body></html>

Pages: 1 2 3 4 5 6 7 8 9 10