'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

FA Cup

The FA Cup is an annual knockout cup competition in English football; first held in 1871–72, it is the oldest association football competition in the world. It is organised by and named after the Football Association, its official name being The Football Association Challenge Cup. For sponsorship reasons, from 2015 through to 2018 it is also known as The Emirates FA Cup. A concurrent women's tournament is also held, known as the FA Women's Cup.

The competition is open to any eligible club down to Level 10 of the English football league system, i.e. all 92 professional clubs (the Premier League and the three levels of the The Football League), as well as several hundred "non-league" teams in Steps 1 to 6 of the National League System. A record 763 clubs competed in 2011–12. The tournament is unseeded, although a system of byes based on league level ensures most competitors enter at progressively later stages. Played over 12 randomly drawn rounds followed by the semi-finals and final, the first six rounds are the Qualifying Competition, followed by six rounds of the Competition Proper, where 32 qualifiers meet professional sides for the first time.

FA Cup (disambiguation)

The FA Cup is the national knockout football tournament in England.

FA Cup may also refer to:

  • Chinese FA Cup - a national cup in People's Republic of China.
  • FA Women's Cup - the main knockout cup competition in English women's football.
  • FFA Cup - the main knockout cup competition in Australian football.
  • Korean FA Cup - a national cup in Republic of Korea.
  • Hong Kong FA Cup - one of the 4 main football competitions in Hong Kong.
  • Sri Lanka FA Cup - The main knockout cup competition in Sri Lankan football
  • Lebanese FA Cup - a national cup in Lebanon.
  • Nigerian FA Cup - a national cup in Nigeria.
  • Scottish Cup – the main knockout cup competition in Scottish men's football
  • Thai FA Cup - the defunct knockout cup competition in Thailand. It was held between 1980-2001.
  • Welsh Cup - the main knockout cup competition in Welsh men's football
  • Thai FA Cup

    The Thai FA Cup (Thai: ไทยเอฟเอคัพ) is a football cup competition in Thailand. It was held between 1980 and 2001 until relaunched again in 2009.Bangkok Bank won the first two editions.

    In 2009 it was announced that the Thai FA Cup would return to the Thai football calendar. All the teams from the Thai Premier League and Division 1 League were automatically entered and teams from the Division 2 League as well as university and schools teams could apply to enter. The qualifying round took place from 27–30 June. The first round proper will see sixteen qualifiers progress to the second round where they will each meet a Division 1 side. The sixteen TPL teams enter at the third round stage. The final will be played at Suphachalasai Stadium with the winning team receiving 1,000,000 Thai baht. The runners-up will receive 500,000 Thai baht.

    Championship history

    Top-performing clubs

    See also

  • Thailand Football Records and Statistics
  • References

    External links

  • siamsport
  • Air Force United F.C.
  • Podcasts:

    • 🏆 FULL MATCH | Manchester City v Manchester United | Final | Emirates FA Cup 2023-24

      Watch the Manchester derby Final in the Emirates FA Cup in full! Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The Emirates FA Cup visit: TheFA.com/EmiratesFACup The Emirates FA Cup on Facebook http://www.facebook.com/TheFACup

      published: 26 May 2024
    • Garnacho & Mainoo Lead United Glory! 🏆 | Man City 1-2 Man United | Final | Emirates FA Cup 23-24

      Watch the extended highlights from Manchester United's 13th FA Cup win as Garnacho and Mainoo lead Manchester United to Emirates FA Cup glory! Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The Emirates FA Cup visit: TheFA.com/EmiratesFACup The Emirates FA Cup on Facebook http://www.facebook.com/TheFACup

      published: 26 May 2024
    • 🔴 YOUR 2023/24 FA CUP WINNERS! 🏆

      published: 25 May 2024
    • First Round Draw | Emirates FA Cup 2024-25

      Draw Numbers: 1. Accrington Stanley 2. AFC Wimbledon 3. Barnsley 4. Barrow 5. Birmingham City 6. Blackpool 7. Bolton Wanderers 8. Bradford City 9. Bristol Rovers 10. Bromley 11. Burton Albion 12. Cambridge United 13. Carlisle United 14. Charlton Athletic 15. Cheltenham Town 16. Chesterfield 17. Colchester United 18. Crawley Town 19. Crewe Alexandra 20. Doncaster Rovers 21. Exeter City 22. Fleetwood Town 23. Gillingham 24. Grimsby Town 25. Harrogate Town 26. Huddersfield Town 27. Leyton Orient 28. Lincoln City 29. Mansfield Town 30. Milton Keynes Dons 31. Morecambe 32. Newport County 33. Northampton Town 34. Notts County 35. Peterborough United 36. Port Vale 37. Reading 38. Rotherham United 39. Salford City 40. Shrewsbury Town 41. Stevenage 42. Stockport County 43. Swindon Town 44. Tranmer...

      published: 14 Oct 2024
    • FA CUP WINNERS 🏆

      published: 25 May 2024
    • INCREDIBLE Old Trafford Thriller! 🔥 | Manchester United 4-3 Liverpool | Emirates FA Cup 2023-24

      21-year-old Ivorian Amad Diallo struck in the 121st minute to hand Manchester United an exhilarating 4-3 win over bitter rivals Liverpool, which sees them face Coventry City in the semi-final's of the Emirates FA Cup at Wembley in April. Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The FA Cup visit: https://www.TheFA.com/EmiratesFACup The FA Cup on Facebook: http://www.facebook.com/TheFACup The FA Cup on Instagram: http://www.instagram.com/emiratesfacup/ The FA Cup on Tiktok: https://www.tiktok.com/@emiratesfacup

      published: 18 Mar 2024
    • MAN UTD WIN THE FA CUP!🏆 (Man City 1-2 Man Utd Mainoo Garnacho Goals FA Cup Final Highlights)

      Man Utd beat rhe (alleged) cheats! Get huge discounts on video games and EA FC 24 points 👉🏻https://www.instant-gaming.com/?igr=442oons #ad Any purchases you make also supports 442oons so thanks! ⚽️ Subscribe to 442oons: http://bit.ly/442oonsSUB ⚽️ 👇🏻Become a 442oons Member👇🏻 https://www.youtube.com/channel/UC4SUUloEcrgjsxbmy_rQQXA/join #facup #football #manutd #manchesterunited Business Enquiries: 442oons@sociallypowerful.com Book a personalised 442oons video shout-out for you, a family member or a mate 👉🏻http://cameo.com/442oonsanimated (web browser only, not on the app) 👕442oons Merch👉🏻https://teespring.com/stores/442oons 442oons Free Apps! 442oons Football Shooter 👉🏻https://bit.ly/442oonsShooter-Android 👉🏻https://bit.ly/442oonsShooter-iOS 🎧442oons Music🎧 Spotify👉🏻https://bit.ly...

      published: 26 May 2024
    • Manchester City v Manchester United | Key Moments | Final | Emirates FA Cup 2023-24

      Watch the key moments between Manchester City v Manchester United in the Emirates FA Cup Final. Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The FA Cup visit: https://www.TheFA.com/EmiratesFACup The FA Cup on Facebook: http://www.facebook.com/TheFACup The FA Cup on Instagram: http://www.instagram.com/emiratesfacup/ The FA Cup on Tiktok: https://www.tiktok.com/@emiratesfacup

      published: 25 May 2024
    • Chelsea vs Man City FA CUP Final! #music #2024 #football #soccer #trending #2025 #goal #fifa #game

      published: 26 Oct 2024
    • FULL MATCH | Manchester United v Liverpool | Quarter-final | Emirates FA Cup 2023-24

      Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The FA Cup visit: https://www.TheFA.com/EmiratesFACup The FA Cup on Facebook: http://www.facebook.com/TheFACup The FA Cup on Instagram: http://www.instagram.com/emiratesfacup/ The FA Cup on Tiktok: https://www.tiktok.com/@emiratesfacup

      published: 18 Mar 2024
    🏆 FULL MATCH | Manchester City v Manchester United | Final | Emirates FA Cup 2023-24
    2:07:57

    🏆 FULL MATCH | Manchester City v Manchester United | Final | Emirates FA Cup 2023-24

    • Order:
    • Duration: 2:07:57
    • Uploaded Date: 26 May 2024
    • views: 6327960
    Watch the Manchester derby Final in the Emirates FA Cup in full! Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The Emirates FA Cup visit: TheFA.com/EmiratesFACup The Emirates FA Cup on Facebook http://www.facebook.com/TheFACup
    https://wn.com/🏆_Full_Match_|_Manchester_City_V_Manchester_United_|_Final_|_Emirates_Fa_Cup_2023_24
    Garnacho & Mainoo Lead United Glory! 🏆 | Man City 1-2 Man United | Final | Emirates FA Cup 23-24
    6:08

    Garnacho & Mainoo Lead United Glory! 🏆 | Man City 1-2 Man United | Final | Emirates FA Cup 23-24

    • Order:
    • Duration: 6:08
    • Uploaded Date: 26 May 2024
    • views: 2412645
    Watch the extended highlights from Manchester United's 13th FA Cup win as Garnacho and Mainoo lead Manchester United to Emirates FA Cup glory! Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The Emirates FA Cup visit: TheFA.com/EmiratesFACup The Emirates FA Cup on Facebook http://www.facebook.com/TheFACup
    https://wn.com/Garnacho_Mainoo_Lead_United_Glory_🏆_|_Man_City_1_2_Man_United_|_Final_|_Emirates_Fa_Cup_23_24
    🔴 YOUR 2023/24 FA CUP WINNERS! 🏆
    0:21

    🔴 YOUR 2023/24 FA CUP WINNERS! 🏆

    • Order:
    • Duration: 0:21
    • Uploaded Date: 25 May 2024
    • views: 584823
    https://wn.com/🔴_Your_2023_24_Fa_Cup_Winners_🏆
    First Round Draw | Emirates FA Cup 2024-25
    17:54

    First Round Draw | Emirates FA Cup 2024-25

    • Order:
    • Duration: 17:54
    • Uploaded Date: 14 Oct 2024
    • views: 83839
    Draw Numbers: 1. Accrington Stanley 2. AFC Wimbledon 3. Barnsley 4. Barrow 5. Birmingham City 6. Blackpool 7. Bolton Wanderers 8. Bradford City 9. Bristol Rovers 10. Bromley 11. Burton Albion 12. Cambridge United 13. Carlisle United 14. Charlton Athletic 15. Cheltenham Town 16. Chesterfield 17. Colchester United 18. Crawley Town 19. Crewe Alexandra 20. Doncaster Rovers 21. Exeter City 22. Fleetwood Town 23. Gillingham 24. Grimsby Town 25. Harrogate Town 26. Huddersfield Town 27. Leyton Orient 28. Lincoln City 29. Mansfield Town 30. Milton Keynes Dons 31. Morecambe 32. Newport County 33. Northampton Town 34. Notts County 35. Peterborough United 36. Port Vale 37. Reading 38. Rotherham United 39. Salford City 40. Shrewsbury Town 41. Stevenage 42. Stockport County 43. Swindon Town 44. Tranmere Rovers 45. Walsall 46. Wigan Athletic 47. Wrexham 48. Wycombe Wanderers 49. Rushall Olympic or Peterborough Sports 50. Tamworth 51. Oldham Athletic 52. Hartlepool United or Brackley Town 53. Kettering Town 54. Altrincham or Solihull Moors 55. Rochdale 56. Scarborough Athletic 57. York City 58. Harborough Town 59. Curzon Ashton 60. Gainsborough Trinity or Boston United 61. Hednesford Town or Gateshead 62. Alfreton Town 63. Guiseley 64. Taunton Town or Maidenhead United 65. Horsham 66. Aldershot Town 67. Southend United 68. Sutton United 69. Boreham Wood 70. Weston Super Mare 71. Wealdstone 72. Dagenham & Redbridge 73. Barnet 74. Chesham United 75. Tonbridge Angels 76. Woking 77. Forest Green Rovers 78. Maidstone United 79. Worthing 80. Braintree Town Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The Emirates FA Cup visit: TheFA.com/EmiratesFACup The Emirates FA Cup on Facebook http://www.facebook.com/TheFACup
    https://wn.com/First_Round_Draw_|_Emirates_Fa_Cup_2024_25
    FA CUP WINNERS 🏆
    0:37

    FA CUP WINNERS 🏆

    • Order:
    • Duration: 0:37
    • Uploaded Date: 25 May 2024
    • views: 711047
    https://wn.com/Fa_Cup_Winners_🏆
    INCREDIBLE Old Trafford Thriller! 🔥 | Manchester United 4-3 Liverpool | Emirates FA Cup 2023-24
    7:55

    INCREDIBLE Old Trafford Thriller! 🔥 | Manchester United 4-3 Liverpool | Emirates FA Cup 2023-24

    • Order:
    • Duration: 7:55
    • Uploaded Date: 18 Mar 2024
    • views: 9084038
    21-year-old Ivorian Amad Diallo struck in the 121st minute to hand Manchester United an exhilarating 4-3 win over bitter rivals Liverpool, which sees them face Coventry City in the semi-final's of the Emirates FA Cup at Wembley in April. Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The FA Cup visit: https://www.TheFA.com/EmiratesFACup The FA Cup on Facebook: http://www.facebook.com/TheFACup The FA Cup on Instagram: http://www.instagram.com/emiratesfacup/ The FA Cup on Tiktok: https://www.tiktok.com/@emiratesfacup
    https://wn.com/Incredible_Old_Trafford_Thriller_🔥_|_Manchester_United_4_3_Liverpool_|_Emirates_Fa_Cup_2023_24
    MAN UTD WIN THE FA CUP!🏆 (Man City 1-2 Man Utd Mainoo Garnacho Goals FA Cup Final  Highlights)
    2:28

    MAN UTD WIN THE FA CUP!🏆 (Man City 1-2 Man Utd Mainoo Garnacho Goals FA Cup Final Highlights)

    • Order:
    • Duration: 2:28
    • Uploaded Date: 26 May 2024
    • views: 643500
    Man Utd beat rhe (alleged) cheats! Get huge discounts on video games and EA FC 24 points 👉🏻https://www.instant-gaming.com/?igr=442oons #ad Any purchases you make also supports 442oons so thanks! ⚽️ Subscribe to 442oons: http://bit.ly/442oonsSUB ⚽️ 👇🏻Become a 442oons Member👇🏻 https://www.youtube.com/channel/UC4SUUloEcrgjsxbmy_rQQXA/join #facup #football #manutd #manchesterunited Business Enquiries: 442oons@sociallypowerful.com Book a personalised 442oons video shout-out for you, a family member or a mate 👉🏻http://cameo.com/442oonsanimated (web browser only, not on the app) 👕442oons Merch👉🏻https://teespring.com/stores/442oons 442oons Free Apps! 442oons Football Shooter 👉🏻https://bit.ly/442oonsShooter-Android 👉🏻https://bit.ly/442oonsShooter-iOS 🎧442oons Music🎧 Spotify👉🏻https://bit.ly/442unesSpotify Apple Music👉🏻https://bit.ly/442unesiTunes Thanks for watching! THIS IS A PARODY. ALL CHARACTERS ARE FICTIONAL CARICATURES For non-You Tube short videos, sneak previews, pictures, behind the scenes, polls, fan choices, updates and more, follow me on: ▶️http://facebook.com/442oons ▶️http://instagram.com/442oons ▶️http://www.tiktok.com/@442oons ▶️http://twitter.com/442oons 442oons was created by me... Dean Stobbart! I do the voices/scripts/ideas/directing/editing/characters blah blah blah ... and now I've got four animators doing all the hard work, the animation... (which is why the animation looks better) Bravo Mike Myler, James Williams, Lauren Bagstaff and Karl Hargreaves (Karl does the art these days too). And thanks to Jamie Shepherd who does helps out with scripts, edits and socials. Thanks for watching! Adios!
    https://wn.com/Man_Utd_Win_The_Fa_Cup_🏆_(Man_City_1_2_Man_Utd_Mainoo_Garnacho_Goals_Fa_Cup_Final_Highlights)
    Manchester City v Manchester United | Key Moments | Final | Emirates FA Cup 2023-24
    2:49

    Manchester City v Manchester United | Key Moments | Final | Emirates FA Cup 2023-24

    • Order:
    • Duration: 2:49
    • Uploaded Date: 25 May 2024
    • views: 7108376
    Watch the key moments between Manchester City v Manchester United in the Emirates FA Cup Final. Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The FA Cup visit: https://www.TheFA.com/EmiratesFACup The FA Cup on Facebook: http://www.facebook.com/TheFACup The FA Cup on Instagram: http://www.instagram.com/emiratesfacup/ The FA Cup on Tiktok: https://www.tiktok.com/@emiratesfacup
    https://wn.com/Manchester_City_V_Manchester_United_|_Key_Moments_|_Final_|_Emirates_Fa_Cup_2023_24
    Chelsea vs Man City FA CUP Final! #music #2024 #football #soccer #trending #2025 #goal #fifa #game
    0:32

    Chelsea vs Man City FA CUP Final! #music #2024 #football #soccer #trending #2025 #goal #fifa #game

    • Order:
    • Duration: 0:32
    • Uploaded Date: 26 Oct 2024
    • views: 309
    https://wn.com/Chelsea_Vs_Man_City_Fa_Cup_Final_Music_2024_Football_Soccer_Trending_2025_Goal_Fifa_Game
    FULL MATCH | Manchester United v Liverpool | Quarter-final | Emirates FA Cup 2023-24
    2:15:37

    FULL MATCH | Manchester United v Liverpool | Quarter-final | Emirates FA Cup 2023-24

    • Order:
    • Duration: 2:15:37
    • Uploaded Date: 18 Mar 2024
    • views: 7222082
    Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The FA Cup visit: https://www.TheFA.com/EmiratesFACup The FA Cup on Facebook: http://www.facebook.com/TheFACup The FA Cup on Instagram: http://www.instagram.com/emiratesfacup/ The FA Cup on Tiktok: https://www.tiktok.com/@emiratesfacup
    https://wn.com/Full_Match_|_Manchester_United_V_Liverpool_|_Quarter_Final_|_Emirates_Fa_Cup_2023_24
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 5:02:18

    🏆 FULL MATCH | Manchester City v Manchester United | Final | Emirates FA Cup 2023-24

    Watch the Manchester derby Final in the Emirates FA Cup in full! Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter.com/emiratesfacup Subscribe: https://www.youtube.com/thefacup To find out more about The Emirates FA Cup visit: TheFA.com/EmiratesFACup The Emirates FA Cup on Facebook http://www.facebook.com/TheFACup
    2:07:57
    🏆 FULL MATCH | Manchester City v Manchester United | Final | Emirates FA Cup 2023-24
    Watch the Manchester derby Final in the Emirates FA Cup in full! Follow @EmiratesFACup o...
    published: 26 May 2024
    Play in Full Screen
    6:08
    Garnacho & Mainoo Lead United Glory! 🏆 | Man City 1-2 Man United | Final | Emirates FA Cup 23-24
    Watch the extended highlights from Manchester United's 13th FA Cup win as Garnacho and Mai...
    published: 26 May 2024
    Play in Full Screen
    0:21
    🔴 YOUR 2023/24 FA CUP WINNERS! 🏆
    published: 25 May 2024
    Play in Full Screen
    17:54
    First Round Draw | Emirates FA Cup 2024-25
    Draw Numbers: 1. Accrington Stanley 2. AFC Wimbledon 3. Barnsley 4. Barrow 5. Birmingham ...
    published: 14 Oct 2024
    Play in Full Screen
    0:37
    FA CUP WINNERS 🏆
    published: 25 May 2024
    Play in Full Screen
    7:55
    INCREDIBLE Old Trafford Thriller! 🔥 | Manchester United 4-3 Liverpool | Emirates FA Cup 2023-24
    21-year-old Ivorian Amad Diallo struck in the 121st minute to hand Manchester United an ex...
    published: 18 Mar 2024
    Play in Full Screen
    2:28
    MAN UTD WIN THE FA CUP!🏆 (Man City 1-2 Man Utd Mainoo Garnacho Goals FA Cup Final Highlights)
    Man Utd beat rhe (alleged) cheats! Get huge discounts on video games and EA FC 24 points 👉...
    published: 26 May 2024
    Play in Full Screen
    2:49
    Manchester City v Manchester United | Key Moments | Final | Emirates FA Cup 2023-24
    Watch the key moments between Manchester City v Manchester United in the Emirates FA Cup F...
    published: 25 May 2024
    Play in Full Screen
    0:32
    Chelsea vs Man City FA CUP Final! #music #2024 #football #soccer #trending #2025 #goal #fifa #game
    published: 26 Oct 2024
    Play in Full Screen
    2:15:37
    FULL MATCH | Manchester United v Liverpool | Quarter-final | Emirates FA Cup 2023-24
    Follow @EmiratesFACup on Twitter for in-game highlights and match updates! https://twitter...
    published: 18 Mar 2024
    Play in Full Screen

    FA Cup

    The FA Cup is an annual knockout cup competition in English football; first held in 1871–72, it is the oldest association football competition in the world. It is organised by and named after the Football Association, its official name being The Football Association Challenge Cup. For sponsorship reasons, from 2015 through to 2018 it is also known as The Emirates FA Cup. A concurrent women's tournament is also held, known as the FA Women's Cup.

    The competition is open to any eligible club down to Level 10 of the English football league system, i.e. all 92 professional clubs (the Premier League and the three levels of the The Football League), as well as several hundred "non-league" teams in Steps 1 to 6 of the National League System. A record 763 clubs competed in 2011–12. The tournament is unseeded, although a system of byes based on league level ensures most competitors enter at progressively later stages. Played over 12 randomly drawn rounds followed by the semi-finals and final, the first six rounds are the Qualifying Competition, followed by six rounds of the Competition Proper, where 32 qualifiers meet professional sides for the first time.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: Fa Cup

    Edit

    Man City's Haaland to be sidelined for weeks after hurting ankle in FA Cup win

    Cadillac News 01 Apr 2025
    Manchester City forward Erling Haaland is set for a long spell on the sidelines due to his ankle injury in the FA Cup quarterfinal win. Haaland had just scored his 30th goal of the season on Sunday against Bournemouth when ... .
    Edit

    David Squires on … Harry Redknapp’s FA Cup quarter-final review

    The Guardian 01 Apr 2025
    Our cartoonist on the headline-grabbing former manager’s views on the weekend’s last-eight tiesBuy a copy of David’s cartoons in our Print ShopDavid’s new book, Chaos in the Box. buy it now ....
    Edit

    How Manchester United reacted to Sir Alex Ferguson's 'special' FA Youth Cup gesture

    Manchester Evening News 01 Apr 2025
    Man Utd U18 manager Adam Lawrence spoke after the youngsters exited the FA Youth Cup on penalties on Monday ... .
    Edit

    Man City awaiting FA Cup semi-final ticket details as Wembley restrictions set

    Manchester Evening News 01 Apr 2025
    Latest news regarding ticket details for Manchester City's trip to Wembley where they will face Nottingham Forest in the FA Cup semi-final ... .
    Edit

    Premier League returns after int'l break, FA Cup weekend

    China.dot.org 01 Apr 2025
    Fulham travels to north London with the disappointment at seeing its hopes of FA Cup glory ended at the quarterfinal stage for the fifth time after a 3-0 defeat to Crystal Palace.
    Edit

    Droitwich Spa crowned champions and earn FA Cup spot after Shortwood win

    Yahoo Daily News 01 Apr 2025
    DROITWICH Spa has clinched step five and FA Cup football for next season after cruising to a 2-0 win over Shortwood United ... The stakes were high for both teams, as Shortwood also needed a victory to keep their play-off dreams alive ... .
    Edit

    Manchester City and Aston Villa’s FA Cup success leads to Premier League fixture reshuffle

    Independent online (SA) 01 Apr 2025
    There was extra drama added to the race for the top four in the English Premiership, with Manchester City's Premier League game against Aston Villa having to be rearranged after both teams reached the FA Cup semi-finals at the weekend.
    Edit

    Pep Guardiola hit with touchline ban after being booked in Man City's dramatic FA Cup ...

    The Daily Mail 01 Apr 2025
    Pep Guardiola has been hit with a touchline ban after picking up a booking during Manchester City's FA Cup victory over Bournemouth on Sunday ... Haaland was forced off during the FA Cup quarter-final after tangling with Lewis Cook.
    Edit

    Marmoush fires Man City into FA Cup semis after Haaland limps off

    The Courier Times 31 Mar 2025
    Manchester City came from behind to reach the FA Cup semi-finals for a record seventh consecutive season with a 2-1 win over Bournemouth on Sunday, but victory came at a cost as Erling Haaland hobbled off injured ....
    Edit

    Omar Marmoush Fires Manchester City Into FA Cup Semis After Erling Haaland Limps Off

    News18 31 Mar 2025
    Omar Marmoush scored the winner as Manchester City came back from a goal down to beat Bournemouth 2-1 to book their spot in the semi-finals of the FA Cup, with Erling Haaland having a penalty saved before netting the equaliser ... .
    ×