'+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; })); }); -->

1968 NCAA Men's Division I Basketball Tournament

The 1968 NCAA Men's Division I Basketball Tournament involved 23 schools playing in single-elimination play to determine the national champion of men's NCAA Division I college basketball. It began on March 8, 1968, and ended with the championship game on March 23 in Los Angeles, California. A total of 27 games were played, including a third place game in each region and a national third place game.

UCLA, coached by John Wooden, won the national title with a 78-55 victory in the final game over North Carolina, coached by Dean Smith. Lew Alcindor of UCLA was named the tournament's Most Outstanding Player for the second of three consecutive years. This UCLA team, composed of three All-Americans, Player of the Year Alcindor, Lucius Allen, and Mike Warren, along with dead eye pure shooter Lynn Shackleford (most of his shots would be 3 pointers today) and burly senior power forward Mike Lynn is considered to be one of the greatest teams in college basketball history.

1961 NCAA Men's Division I Basketball Tournament

The 1961 NCAA Men's Division I Basketball Tournament involved 24 schools playing in single-elimination play to determine the national champion of men's NCAA Division I college basketball in the United States. It began on March 14, 1961, and ended with the championship game on March 25 in Kansas City, Missouri. A total of 28 games were played, including a third place game in each region and a national third place game.

Cincinnati, coached by Ed Jucker, won the national title with a 70-65 victory in the final game over state rival Ohio State, coached by Fred Taylor. Jerry Lucas of Ohio State was named the tournament's Most Outstanding Player.

The national third place game, won by St. Joseph's over Utah by the score of 127-120 in four overtimes, tied the record for the longest game in NCAA Division I tournament history, set in 1956 in a first-round game between Canisius and North Carolina State. As of the regional finals of the 2009 tournament, no NCAA Division I tournament games since then have gone to a fourth overtime period. Saint Joseph's victory was later vacated because of a gambling scandal.

1963 NCAA Men's Division I Basketball Tournament

The 1963 NCAA Men's Division I Basketball Tournament involved 25 schools playing in single-elimination play to determine the national champion of men's NCAA Division I college basketball in the United States. It began on March 9, 1963, and ended with the championship game on March 23 in Louisville, Kentucky. A total of 29 games were played, including a third-place game in each region and a national third-place game.

Loyola University Chicago, coached by George Ireland, won the national title with a 60-58 overtime victory in the final game, over the University of Cincinnati, coached by Ed Jucker. Art Heyman, of Duke University, was named the tournament's Most Outstanding Player. This tournament marked the last time that a city was host to two straight Final Fours.

Teams

Bracket

* – Denotes overtime period

East region

Mideast region

Midwest region

West region

Final Four

National Third Place Game

Regional Third Place Games

Noteworthy

In the Loyola vs. Mississippi State game at East Lansing, Michigan in a Mideast regional semifinal, Mississippi State, an all-white team, played despite protests from the governor and state police of Mississippi. Mississippi State overcame a state prohibition against playing integrated teams. Loyola beat Mississippi State and went on to the Mideast Region Championship game. In the National Championship game, Loyola started four African-Americans and Cincinnati started three, marking the first time that a majority of African-Americans participated in the championship game.

Podcasts:

  • NCAA Tournament 2nd round takeaways: Duke shines and UConn falls | Get Up

    On Get Up, Seth Greenberg, Jay Williams and Carlos Boozer weigh in on the second round of the NCAA Tournament and discuss how NIL deals are impacting college basketball. 0:00 Maryland avoids upset vs. Colorado State at the buzzer 5:40 UConn falls to Florida in the second round 10:30 Jay Williams on Dan Hurley as a coach 11:40 Cooper Flagg’s performance vs. Baylor #espn #getup #collegebasketball ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV #ESPN

    published: 24 Mar 2025
  • Round of 32: Alabama vs. Maryland | Women's NCAA Tournament | Full Game Highlights

    Watch these highlights as the No. 4 Maryland Terrapins defeat the No. 5 Alabama Crimson Tide, 111-108, in double overtime to advance to the Sweet 16 of the Women's NCAA Tournament. Alabama's Sarah Ashlee Barker scores 45 PTS, the fourth-most in NCAA Tournament game history. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV

    published: 25 Mar 2025
  • Are Upsets & Cinderella Runs SLOWLY DYING Away in the NCAA Tournament?! | College GameDay Podcast

    Pete Thamel and Jeff Borzello discuss how the NCAA Tournament is transforming — and if this is really for the better. The SEC's 14 teams in the field edged out mid-major teams which led to chalk in the first and second round. Is this what kills the domino of upsets and Cinderella runs everyone is so used to? Also, what happens to the Big East? Will their teams secure spots among the power conferences? As of right, BYU is turning heads and grabbing headlines. Do they have a chance to win a tourney title and why do they have lofty expectations for the next few years to come? 0:00 Why chalk is okay in the first and second rounds 5:10 Did the SEC deserve 14 teams in the tournament? 14:45 Is there room for the Big East alongside the SEC and Big Ten? 21:03 Why BYU will top headlines in the com...

    published: 24 Mar 2025
  • Round of 32: Florida State vs. LSU | Women's NCAA Tournament | Full Game Highlights

    Watch the highlights as the No. 3 LSU Tigers dominate the No. 6 Florida State Seminoles, 101-71, to advance to the Sweet 16 of the Women's NCAA Tournament. The Tigers were led by Aneesah Morrow who put up 26 PTS and 11 REB. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV

    published: 25 Mar 2025
  • Duke vs. Baylor - Second round NCAA tournament extended highlights

    Watch the highlights from No. 1 Duke and No. 9 Baylor's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ Follow Marc...

    published: 23 Mar 2025
  • Michigan State vs. New Mexico - Second round NCAA tournament extended highlights

    Watch the highlights from No. 2 Michigan State and No. 10 New Mexico's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb...

    published: 24 Mar 2025
  • North Carolina vs. West Virginia - Second round NCAA tournament extended highlights

    Watch the highlights from No. 3 North Carolina and No. 6 West Virginia's matchup in the second round of the 2025 women's NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadne...

    published: 25 Mar 2025
  • Maryland vs. Colorado State - Second round NCAA tournament extended highlights

    Watch the highlights from No. 4 Maryland and No. 12 Colorado State's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ ...

    published: 24 Mar 2025
  • Arizona vs. Oregon - Second round NCAA tournament extended highlights

    Watch the highlights from No. 4 Arizona and No. 5 Oregon's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ Follow Ma...

    published: 24 Mar 2025
NCAA Tournament 2nd round takeaways: Duke shines and UConn falls | Get Up
15:08

NCAA Tournament 2nd round takeaways: Duke shines and UConn falls | Get Up

  • Order:
  • Duration: 15:08
  • Uploaded Date: 24 Mar 2025
  • views: 58295
On Get Up, Seth Greenberg, Jay Williams and Carlos Boozer weigh in on the second round of the NCAA Tournament and discuss how NIL deals are impacting college basketball. 0:00 Maryland avoids upset vs. Colorado State at the buzzer 5:40 UConn falls to Florida in the second round 10:30 Jay Williams on Dan Hurley as a coach 11:40 Cooper Flagg’s performance vs. Baylor #espn #getup #collegebasketball ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV #ESPN
https://wn.com/Ncaa_Tournament_2Nd_Round_Takeaways_Duke_Shines_And_Uconn_Falls_|_Get_Up
Round of 32: Alabama vs. Maryland | Women's NCAA Tournament | Full Game Highlights
20:07

Round of 32: Alabama vs. Maryland | Women's NCAA Tournament | Full Game Highlights

  • Order:
  • Duration: 20:07
  • Uploaded Date: 25 Mar 2025
  • views: 32262
Watch these highlights as the No. 4 Maryland Terrapins defeat the No. 5 Alabama Crimson Tide, 111-108, in double overtime to advance to the Sweet 16 of the Women's NCAA Tournament. Alabama's Sarah Ashlee Barker scores 45 PTS, the fourth-most in NCAA Tournament game history. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV
https://wn.com/Round_Of_32_Alabama_Vs._Maryland_|_Women's_Ncaa_Tournament_|_Full_Game_Highlights
Are Upsets & Cinderella Runs SLOWLY DYING Away in the NCAA Tournament?! | College GameDay Podcast
53:13

Are Upsets & Cinderella Runs SLOWLY DYING Away in the NCAA Tournament?! | College GameDay Podcast

  • Order:
  • Duration: 53:13
  • Uploaded Date: 24 Mar 2025
  • views: 5621
Pete Thamel and Jeff Borzello discuss how the NCAA Tournament is transforming — and if this is really for the better. The SEC's 14 teams in the field edged out mid-major teams which led to chalk in the first and second round. Is this what kills the domino of upsets and Cinderella runs everyone is so used to? Also, what happens to the Big East? Will their teams secure spots among the power conferences? As of right, BYU is turning heads and grabbing headlines. Do they have a chance to win a tourney title and why do they have lofty expectations for the next few years to come? 0:00 Why chalk is okay in the first and second rounds 5:10 Did the SEC deserve 14 teams in the tournament? 14:45 Is there room for the Big East alongside the SEC and Big Ten? 21:03 Why BYU will top headlines in the coming years 25:08 How BYU signed future NBA star AJ Dybantsa 28:48 The Rick Pitino - John Calipari rivalry 33:58 Why did Rick Pitino bench RJ Luis? 39:32 The two Sweet 16 matchups to watch 40:59 Maryland head coach Kevin Willard to Villanova? 49:30 The ACC's most interesting head coach ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV
https://wn.com/Are_Upsets_Cinderella_Runs_Slowly_Dying_Away_In_The_Ncaa_Tournament_|_College_Gameday_Podcast
Round of 32: Florida State vs. LSU | Women's NCAA Tournament | Full Game Highlights
12:58

Round of 32: Florida State vs. LSU | Women's NCAA Tournament | Full Game Highlights

  • Order:
  • Duration: 12:58
  • Uploaded Date: 25 Mar 2025
  • views: 31812
Watch the highlights as the No. 3 LSU Tigers dominate the No. 6 Florida State Seminoles, 101-71, to advance to the Sweet 16 of the Women's NCAA Tournament. The Tigers were led by Aneesah Morrow who put up 26 PTS and 11 REB. ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV
https://wn.com/Round_Of_32_Florida_State_Vs._Lsu_|_Women's_Ncaa_Tournament_|_Full_Game_Highlights
Duke vs. Baylor - Second round NCAA tournament extended highlights
9:11

Duke vs. Baylor - Second round NCAA tournament extended highlights

  • Order:
  • Duration: 9:11
  • Uploaded Date: 23 Mar 2025
  • views: 651689
Watch the highlights from No. 1 Duke and No. 9 Baylor's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ Follow March Madness WBB on Instagram: https://www.instagram.com/marchmadnesswbb/ Follow March Madness MBB on Snapchat: https://www.snapchat.com/add/ marchmadnessmbb #marchmadness #collegebasketball
https://wn.com/Duke_Vs._Baylor_Second_Round_Ncaa_Tournament_Extended_Highlights
Michigan State vs. New Mexico - Second round NCAA tournament extended highlights
9:40

Michigan State vs. New Mexico - Second round NCAA tournament extended highlights

  • Order:
  • Duration: 9:40
  • Uploaded Date: 24 Mar 2025
  • views: 142686
Watch the highlights from No. 2 Michigan State and No. 10 New Mexico's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ Follow March Madness WBB on Instagram: https://www.instagram.com/marchmadnesswbb/ Follow March Madness MBB on Snapchat: https://www.snapchat.com/add/ marchmadnessmbb #marchmadness #collegebasketball
https://wn.com/Michigan_State_Vs._New_Mexico_Second_Round_Ncaa_Tournament_Extended_Highlights
North Carolina vs. West Virginia - Second round NCAA tournament extended highlights
9:19

North Carolina vs. West Virginia - Second round NCAA tournament extended highlights

  • Order:
  • Duration: 9:19
  • Uploaded Date: 25 Mar 2025
  • views: 2156
Watch the highlights from No. 3 North Carolina and No. 6 West Virginia's matchup in the second round of the 2025 women's NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ Follow March Madness WBB on Instagram: https://www.instagram.com/marchmadnesswbb/ Follow March Madness MBB on Snapchat: https://www.snapchat.com/add/ marchmadnessmbb #marchmadness #collegebasketball
https://wn.com/North_Carolina_Vs._West_Virginia_Second_Round_Ncaa_Tournament_Extended_Highlights
Maryland vs. Colorado State - Second round NCAA tournament extended highlights
9:55

Maryland vs. Colorado State - Second round NCAA tournament extended highlights

  • Order:
  • Duration: 9:55
  • Uploaded Date: 24 Mar 2025
  • views: 245135
Watch the highlights from No. 4 Maryland and No. 12 Colorado State's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ Follow March Madness WBB on Instagram: https://www.instagram.com/marchmadnesswbb/ Follow March Madness MBB on Snapchat: https://www.snapchat.com/add/ marchmadnessmbb #marchmadness #collegebasketball
https://wn.com/Maryland_Vs._Colorado_State_Second_Round_Ncaa_Tournament_Extended_Highlights
Arizona vs. Oregon - Second round NCAA tournament extended highlights
11:08

Arizona vs. Oregon - Second round NCAA tournament extended highlights

  • Order:
  • Duration: 11:08
  • Uploaded Date: 24 Mar 2025
  • views: 249280
Watch the highlights from No. 4 Arizona and No. 5 Oregon's matchup in the second round of the 2025 men’s NCAA tournament. Watch highlights, game recaps and much more from the NCAA Division I men’s and women’s basketball tournaments on the official NCAA March Madness YouTube channel. Subscribe now to be updated on the latest videos: https://www.youtube.com/marchmadness Connect with March Madness: Follow March Madness MBB on Twitter: https://twitter.com/MarchMadnessMBB Follow March Madness WBB on Twitter: https://twitter.com/MarchMadnessWBB Like March Madness MBB on Facebook: https://www.facebook.com/MarchMadnessMBB Like March Madness WBB on Facebook: https://www.facebook.com/MarchMadnessWBB/ Follow March Madness MBB on Instagram: https://www.instagram.com/marchmadnessmbb/ Follow March Madness WBB on Instagram: https://www.instagram.com/marchmadnesswbb/ Follow March Madness MBB on Snapchat: https://www.snapchat.com/add/ marchmadnessmbb #marchmadness #collegebasketball
https://wn.com/Arizona_Vs._Oregon_Second_Round_Ncaa_Tournament_Extended_Highlights
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 2:30:39

NCAA Tournament 2nd round takeaways: Duke shines and UConn falls | Get Up

On Get Up, Seth Greenberg, Jay Williams and Carlos Boozer weigh in on the second round of the NCAA Tournament and discuss how NIL deals are impacting college basketball. 0:00 Maryland avoids upset vs. Colorado State at the buzzer 5:40 UConn falls to Florida in the second round 10:30 Jay Williams on Dan Hurley as a coach 11:40 Cooper Flagg’s performance vs. Baylor #espn #getup #collegebasketball ✔️ Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV #ESPN
15:08
NCAA Tournament 2nd round takeaways: Duke shines and UConn falls | Get Up
On Get Up, Seth Greenberg, Jay Williams and Carlos Boozer weigh in on the second round of ...
published: 24 Mar 2025
Play in Full Screen
20:07
Round of 32: Alabama vs. Maryland | Women's NCAA Tournament | Full Game Highlights
Watch these highlights as the No. 4 Maryland Terrapins defeat the No. 5 Alabama Crimson Ti...
published: 25 Mar 2025
Play in Full Screen
53:13
Are Upsets & Cinderella Runs SLOWLY DYING Away in the NCAA Tournament?! | College GameDay Podcast
Pete Thamel and Jeff Borzello discuss how the NCAA Tournament is transforming — and if thi...
published: 24 Mar 2025
Play in Full Screen
12:58
Round of 32: Florida State vs. LSU | Women's NCAA Tournament | Full Game Highlights
Watch the highlights as the No. 3 LSU Tigers dominate the No. 6 Florida State Seminoles, 1...
published: 25 Mar 2025
Play in Full Screen
9:11
Duke vs. Baylor - Second round NCAA tournament extended highlights
Watch the highlights from No. 1 Duke and No. 9 Baylor's matchup in the second round of the...
published: 23 Mar 2025
Play in Full Screen
9:40
Michigan State vs. New Mexico - Second round NCAA tournament extended highlights
Watch the highlights from No. 2 Michigan State and No. 10 New Mexico's matchup in the seco...
published: 24 Mar 2025
Play in Full Screen
9:19
North Carolina vs. West Virginia - Second round NCAA tournament extended highlights
Watch the highlights from No. 3 North Carolina and No. 6 West Virginia's matchup in the se...
published: 25 Mar 2025
Play in Full Screen
9:55
Maryland vs. Colorado State - Second round NCAA tournament extended highlights
Watch the highlights from No. 4 Maryland and No. 12 Colorado State's matchup in the second...
published: 24 Mar 2025
Play in Full Screen
11:08
Arizona vs. Oregon - Second round NCAA tournament extended highlights
Watch the highlights from No. 4 Arizona and No. 5 Oregon's matchup in the second round of ...
published: 24 Mar 2025
Play in Full Screen

1968 NCAA Men's Division I Basketball Tournament

The 1968 NCAA Men's Division I Basketball Tournament involved 23 schools playing in single-elimination play to determine the national champion of men's NCAA Division I college basketball. It began on March 8, 1968, and ended with the championship game on March 23 in Los Angeles, California. A total of 27 games were played, including a third place game in each region and a national third place game.

UCLA, coached by John Wooden, won the national title with a 78-55 victory in the final game over North Carolina, coached by Dean Smith. Lew Alcindor of UCLA was named the tournament's Most Outstanding Player for the second of three consecutive years. This UCLA team, composed of three All-Americans, Player of the Year Alcindor, Lucius Allen, and Mike Warren, along with dead eye pure shooter Lynn Shackleford (most of his shots would be 3 pointers today) and burly senior power forward Mike Lynn is considered to be one of the greatest teams in college basketball history.

'); } 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: ncaa tournament

Edit

What channel is Alabama gymnastics on today? Time, TV schedule for NCAA Tournament quad meet

Tuscaloosanews.com 04 Apr 2025
Alabama gymnastics is gearing up to start its NCAA Tournament run Friday ... Alabama will participate in the NCAA Tournament on Friday, streaming options include Watch ESPN and ESPN+. Alabama Gymnastics start time in NCAA Tournament.
Edit

What time is the Women's Final Four today? TV schedule, channels for 2025 NCAA Tournament semifinals

Sportingnews 04 Apr 2025
The Final Four games of the NCAA women's tournament — South Carolina vs ... South Carolina is up 2-1 on Texas this season, which includes a win in the SEC Tournament title game. STREAM.2025 NCAA Women's Final Four LIVE on Sling.
Edit

NCAA Tournament Final Four 2025: Basketball experts unveil score predictions for Florida-Auburn, Duke-Houston

CBS Sports 04 Apr 2025
The 2025 NCAA Tournament has reached the Final Four and the action begins on Saturday with the two national semifinals then concludes on Monday with the national championship ... Top 2025 NCAA Tournament Final Four score predictions.
Edit

NCAA Tournament best bets: Sides, totals that stand out in Final Four

Review Journal 04 Apr 2025
South Point studio host Alex White, 12-5 against the spread on her NCAA Tournament picks, shares her betting strategy and best bet for the Final Four ....
Edit

Houston, the NCAA tournament’s accidental road warrior, keeps fighting

The Philadelphia Tribune 04 Apr 2025
The Houston men’s basketball team could have spent the entire NCAA tournament moaning about disrespect and distance, and it would’ve been right. Although the Cougars were properly seeded as a No. 1, they had to travel farther than usual to ....
Edit

NCAA tournament experienced in many ways

Star Beacon 04 Apr 2025
My love of the NCAA Division I Men’s Basketball Tournament goes all the way back to the 1960s as the UCLA Bruins dominating the college scene for decades ... .
Edit

Texas vs South Carolina prediction: Preview, how to watch NCAA Tournament game

Austin American-Statesman 04 Apr 2025
But the name of the game for Texas is defense and the Longhorns are allowing 53.8 points per game in the NCAA Tournament.
Edit

Louisville basketball managers eyeing title during NCAA Tournament Final Four | C.L. Brown

Courier Journal 04 Apr 2025
Pat Kelsey praises team after NCAA Tournament loss. Louisville basketball coach Pat Kelsey praises the Cardinals following an 89-75 loss to Creighton in the first round of the 2025 NCAA Tournament.
Edit

Our top takeaways as top-ranked LSU gymnastics advances to NCAA Tournament Regional Final

Daily Advertiser 04 Apr 2025
Arkansas finished second at 197.55, while Michigan (197.05) and Maryland (196.825) were eliminated from the tournament ... Freshman Kailin Chio stepped up in her first NCAA Tournament, becoming the only Tiger to score four 9.9s on Thursday.
Edit

Women's Final Four live streams: How to watch 2025 NCAA Tournament semifinals without cable

Sportingnews 04 Apr 2025
The stage is set for a stacked Final Four in the 2025 women's NCAA Tournament. Three No. 1 seeds and No ... The one No ... TV channel ... NCAA women's semifinal games will be played on Friday, April 4, and the championship game will be held on Sunday, April 6.
Edit

March Madness Final Four picks: Who will win NCAA Tournament

The Tennessean 04 Apr 2025
in San Antonio ... Who will win NCAA Tournament? ... Cora Hall, Knox NewsFloridaDukeDuke ... This was my national title result before the bracket started, and I’ve seen no reason thus far in the tournament to believe Duke isn’t the best team still playing in it.
Edit

March Madness Women's Final Four picks: Who will win NCAA Tournament

Greenville News 04 Apr 2025
The Women's Final Four concludes March Madness beginning Friday in Tampa, with South Carolina facing Texas and UConn playing UCLA ... UConn has not won a national title since 2016, which had been the fourth title in a row ... Who will win NCAA Tournament?.
Edit

Duke vs. Houston odds, prediction, start time: 2025 NCAA Tournament Final Four picks by proven model

CBS Sports 04 Apr 2025
Teams with long winning streaks face off when the Houston Cougars meet the Duke Blue Devils in a 2025 NCAA Tournament Final Four matchup on Saturday night ... Auburn odds, NCAA Final Four predictions .
Edit

UConn-South Carolina? Ranking possible women's NCAA tournament title matchups

NBC Bay Area 04 Apr 2025
Women's March Madness has boiled down from 64 teams to four ... 1 seeds and one No ... Texas, No ... 4 ... 3 ... 2 ... What’s the record for the most points scored in a March Madness game? Here’s a look at the best individual scoring performances in NCAA Tournament history.
×