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

NCAA Division II

Division II is an intermediate-level division of competition in the National Collegiate Athletic Association (NCAA). It offers an alternative to both the larger and better funded NCAA Division I and to the no athletic scholarship environment offered in Division III. Divisions II and III were formerly known collectively as the NCAA College Division.

Nationally, ESPN televises the championship game in football, CBS televises the men's basketball championship, and ESPN2 televises the women's basketball championship. CBS Sports Network broadcasts six football games on Thursdays during the regular season, and one men's basketball game per week on Saturdays during that sport's regular season.

Membership

Division II

Division II or Division 2 may refer to:

In sport leagues

  • NCAA Division II, an intermediate-level division of the National Collegiate Athletic Association
  • Division 2 (Swedish ice hockey), the fourth tier of ice hockey in Sweden
  • Division II (US bandy), the second-highest league for bandy in the United States
  • Division II (NCRHA), a division of the National Collegiate Roller Hockey Association
  • Second Division, a list of divisions in various football (soccer) leagues
  • Other uses

  • Division II (windsurf board), a class of windsurf board design
  • Division No. 2, Manitoba, a region of Manitoba, Canada
  • Division No. 2, Saskatchewan, a census division within Saskatchewan, Canada
  • See also

  • 2nd Division (disambiguation), a list of military units and formations
  • B Division (disambiguation)
  • Division 1 (disambiguation)
  • Division II (windsurf board)

    The 1988 Olympics, saw the introduction of Lechner Division II boards. The Division II class used a 6.5m sail and were round bottomed boards designed for upwind sailing in light to moderate winds.

    Although they were difficult to sail downwind and a technical board to sail upwind, they are still the fastest 12 foot board upwind in up to 8 knots of breeze. The contest for the Olympic board had been between the Davidson (a Swedish design) and the Division II built in Austria. The final Olympic rig was available less than a year before the Olympics.

    Like in 1984, the supplied equipment was rotated daily (except for the rigs).

    References


    Bandy in the United States

    Bandy in the United States is played mostly in Minnesota.Bandy is a team sport played on ice.

    The United States national bandy team has taken part in the Bandy World Championships since the 1985 tournament. It also plays friendlies against Canada. The 1995 Bandy World Championship was played at Guidant John Rose Minnesota Oval.

    The United States women's national bandy team has participated in all World Championships. The 2006 tournament was played in Minnesota and the 2016 tournament will be.

    In the late nineteenth century there was a game very similar to bandy called ice polo played in the United States.

    Governing body

    The American Bandy Association (ABA), also called USA Bandy, is the governing body of bandy in the United States. The association was established and became a member of the Federation of International Bandy in 1981.

    League play

    The American Bandy League is the top-tier of bandy played in the United States. The league is split into two divisions, with 6 teams in Division I and 4 in Division II. All ABA league games are played at the Guidant John Rose Minnesota Oval in Roseville, Minnesota.

    Podcasts:

    • 2019 NCAA Division II Championship - West Florida vs Minnesota State

      Dec. 21, 2019

      published: 23 Dec 2019
    • How the NCAA Works - Division II

      Want to know how the NCAA works? This video will give you the inside perspective of how the Division II process happens.

      published: 28 Apr 2021
    • 2019 DII Men's Basketball Championship game | FULL REPLAY

      Watch the full replay of the 2019 Men's Division II NCAA Championship game in the Elite Eight. Northwest Missouri State completed its 38-0 undefeated season with the win in the title game over Point Loma. Subscribe to the NCAA Championship YouTube channel: https://www.youtube.com/NCAAChampionships?sub_confirmation=1

      published: 21 Oct 2019
    • NCAA Division II Men's Soccer - Lenoir-Rhyne at #24 Wingate

      published: 22 Oct 2017
    • 2015 NCAA Division II Highlight Video

      Highlight's from 2015 NCAA Division II National Championships unveiled at the 2016 NCAA Convention

      published: 27 Jan 2016
    • NCAA Division II Military Project

      Highlighting a groundbreaking partnership between NCAA Division II, Georgia Regents University, the Peach Belt Conference and Fort Gordon. Launched in 2014-15.

      published: 04 Jun 2015
    • 2016 NCAA Division II Wrestling Highlight Video - Day 1

      Highlight video from day one of the 2016 NCAA Division II Wrestling National Championships held at the Denny Sanford PREMIER Center in Sioux Falls, S.D. Courtesy of Video Infinity

      published: 12 Mar 2016
    • NCAA Division II Championship

      In an unbelievable finish, Anthony Atkinson scored 10 points in the final 45 seconds against Winona State to give Burton College its first Division II championship.

      published: 26 Mar 2007
    2019 NCAA Division II Championship - West Florida vs Minnesota State
    2:57:28

    2019 NCAA Division II Championship - West Florida vs Minnesota State

    • Order:
    • Duration: 2:57:28
    • Uploaded Date: 23 Dec 2019
    • views: 79882
    Dec. 21, 2019
    https://wn.com/2019_Ncaa_Division_Ii_Championship_West_Florida_Vs_Minnesota_State
    How the NCAA Works - Division II
    2:14

    How the NCAA Works - Division II

    • Order:
    • Duration: 2:14
    • Uploaded Date: 28 Apr 2021
    • views: 2086
    Want to know how the NCAA works? This video will give you the inside perspective of how the Division II process happens.
    https://wn.com/How_The_Ncaa_Works_Division_Ii
    2019 DII Men's Basketball Championship game | FULL REPLAY
    1:41:04

    2019 DII Men's Basketball Championship game | FULL REPLAY

    • Order:
    • Duration: 1:41:04
    • Uploaded Date: 21 Oct 2019
    • views: 28585
    Watch the full replay of the 2019 Men's Division II NCAA Championship game in the Elite Eight. Northwest Missouri State completed its 38-0 undefeated season with the win in the title game over Point Loma. Subscribe to the NCAA Championship YouTube channel: https://www.youtube.com/NCAAChampionships?sub_confirmation=1
    https://wn.com/2019_Dii_Men's_Basketball_Championship_Game_|_Full_Replay
    NCAA Division II Men's Soccer - Lenoir-Rhyne at #24 Wingate
    2:09:58

    NCAA Division II Men's Soccer - Lenoir-Rhyne at #24 Wingate

    • Order:
    • Duration: 2:09:58
    • Uploaded Date: 22 Oct 2017
    • views: 7958
    https://wn.com/Ncaa_Division_Ii_Men's_Soccer_Lenoir_Rhyne_At_24_Wingate
    2015 NCAA Division II Highlight Video
    4:14

    2015 NCAA Division II Highlight Video

    • Order:
    • Duration: 4:14
    • Uploaded Date: 27 Jan 2016
    • views: 286
    Highlight's from 2015 NCAA Division II National Championships unveiled at the 2016 NCAA Convention
    https://wn.com/2015_Ncaa_Division_Ii_Highlight_Video
    NCAA Division II Military Project
    5:31

    NCAA Division II Military Project

    • Order:
    • Duration: 5:31
    • Uploaded Date: 04 Jun 2015
    • views: 917
    Highlighting a groundbreaking partnership between NCAA Division II, Georgia Regents University, the Peach Belt Conference and Fort Gordon. Launched in 2014-15.
    https://wn.com/Ncaa_Division_Ii_Military_Project
    2016 NCAA Division II Wrestling Highlight Video - Day 1
    3:52

    2016 NCAA Division II Wrestling Highlight Video - Day 1

    • Order:
    • Duration: 3:52
    • Uploaded Date: 12 Mar 2016
    • views: 16501
    Highlight video from day one of the 2016 NCAA Division II Wrestling National Championships held at the Denny Sanford PREMIER Center in Sioux Falls, S.D. Courtesy of Video Infinity
    https://wn.com/2016_Ncaa_Division_Ii_Wrestling_Highlight_Video_Day_1
    NCAA Division II Championship
    1:57

    NCAA Division II Championship

    • Order:
    • Duration: 1:57
    • Uploaded Date: 26 Mar 2007
    • views: 96599
    In an unbelievable finish, Anthony Atkinson scored 10 points in the final 45 seconds against Winona State to give Burton College its first Division II championship.
    https://wn.com/Ncaa_Division_Ii_Championship
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    2019 NCAA Division II Championship - West Florida vs Minnesota State

    Dec. 21, 2019
    2:57:28
    2019 NCAA Division II Championship - West Florida vs Minnesota State
    Dec. 21, 2019
    published: 23 Dec 2019
    Play in Full Screen
    2:14
    How the NCAA Works - Division II
    Want to know how the NCAA works? This video will give you the inside perspective of how th...
    published: 28 Apr 2021
    Play in Full Screen
    1:41:04
    2019 DII Men's Basketball Championship game | FULL REPLAY
    Watch the full replay of the 2019 Men's Division II NCAA Championship game in the Elite Ei...
    published: 21 Oct 2019
    Play in Full Screen
    2:09:58
    NCAA Division II Men's Soccer - Lenoir-Rhyne at #24 Wingate
    published: 22 Oct 2017
    Play in Full Screen
    4:14
    2015 NCAA Division II Highlight Video
    Highlight's from 2015 NCAA Division II National Championships unveiled at the 2016 NCAA Co...
    published: 27 Jan 2016
    Play in Full Screen
    5:31
    NCAA Division II Military Project
    Highlighting a groundbreaking partnership between NCAA Division II, Georgia Regents Univer...
    published: 04 Jun 2015
    Play in Full Screen
    3:52
    2016 NCAA Division II Wrestling Highlight Video - Day 1
    Highlight video from day one of the 2016 NCAA Division II Wrestling National Championships...
    published: 12 Mar 2016
    Play in Full Screen
    1:57
    NCAA Division II Championship
    In an unbelievable finish, Anthony Atkinson scored 10 points in the final 45 seconds again...
    published: 26 Mar 2007
    Play in Full Screen

    NCAA Division II

    Division II is an intermediate-level division of competition in the National Collegiate Athletic Association (NCAA). It offers an alternative to both the larger and better funded NCAA Division I and to the no athletic scholarship environment offered in Division III. Divisions II and III were formerly known collectively as the NCAA College Division.

    Nationally, ESPN televises the championship game in football, CBS televises the men's basketball championship, and ESPN2 televises the women's basketball championship. CBS Sports Network broadcasts six football games on Thursdays during the regular season, and one men's basketball game per week on Saturdays during that sport's regular season.

    Membership

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

    Edit

    GVSU women take NCAA Division II national championship behind bench power

    Detroit Free Press 29 Mar 2025
    This year, everyone was healthy and the team embraced the team having 11 starters and used that depth and talent to claim the NCAA Division II national championship ... first NCAA title since 2006.
    Edit

    TITLE TOWN! GVSU women claim NCAA Division II national championship behind bench power

    Holland Sentinel 29 Mar 2025
    This year, everyone was healthy and the team embraced the team having 11 starters and used that depth and talent to claim the NCAA Division II national championship ... first NCAA title since 2006.
    Edit

    Saturday On The Air

    The Day 29 Mar 2025
    1 p.m., ESPN2NCAA ... 8 — NCAA women ... Notre Dame in Division I tournament from Birmingham, Ala ... Division I final from Hutchinson, Kansas ... 3 — NCAA men ... Nova Southeastern in Division II tournament final from Evansville, Ind.
    Edit

    Lenoir-Rhyne softball coach records landmark win. Baseball team moves to 25-4 on season

    Hickory Record 29 Mar 2025
    Hollar now sits at 1,045 career victories. She ranks fifth among active NCAA Division II coaches ... .
    Edit

    Here's where to watch the NCAA Tournament Sweet 16 games and MLB baseball

    Journal Gazette 29 Mar 2025
    2 p.m.,NCAA Division II Tournament ... 5.10 p.m.,NCAA Tournament ... 7.50 p.m.,NCAA Tournament ... Noon,NCAA Tournament ... 2.30 p.m.,NCAA Tournament ... 4.30 p.m.,NCAA Tournament ... 7 p.m.,NCAA Tournament ... 3 p.m.,NCAA Tournament ... 5.30 p.m.,NCAA Tournament.
    Edit

    Five for five: BHSA’s Peyton Hellmann is the Mitchell Republic's 2025 girls wrestler of the year

    The Daily Republic 29 Mar 2025
    TYNDALL, S.D ... On top ... Battling back ... Competing at the U.S ... Effectively a large letter of intent, it served to announce that Hellmann will continue her athletic and academic career at Fort Hays State University, an NCAA Division II institution in Kansas.
    Edit

    Cal State Dominguez Hills men’s basketball to play for NCAA Division II title

    The Los Angeles Times 28 Mar 2025
    ... to lead the Cal State Dominguez Hills men's basketball team to a 94-83 overtime victory over Dallas Baptist on Thursday night in the NCAA Division II semifinal at the Ford Center in Evansville, Ind.
    Edit

    Five takeaways as NSU men’s basketball makes it to NCAA Division II championship game

    The Miami Herald 28 Mar 2025
    The Sharks advanced to the national championship game for the third consecutive season ... .
    Edit

    Bruce Pearl coaching timeline: How many teams Auburn HC has coached and career record

    Sportingnews 28 Mar 2025
    Regardless of what he's done or where he's been, however, Pearl has found a way to win, with a career record of 704-267 (.725) across NCAA Division I and Division II ... Pearl got his first head coaching job in 1992 at Division II Southern Indiana.
    Edit

    NSU Sharks dominate in Final Four, advance to championship game

    Sun Sentinel 28 Mar 2025
    With Thursday’s win, NSU improved to 22-3 in the NCAA Division II National Tournament, all under coach Jim Crutchfield.
    Edit

    Puckett, Spear Named CSC Academic All-District

    Knoxville Daily Sun 28 Mar 2025
    ... the court and in the classroom, the CSC Academic All-America� program separately recognizes women's basketball honorees in four divisions. NCAA Division I, NCAA Division II, NCAA Division III and NAIA.
    Edit

    He spent more than 30 years as an official. Now, this Hopewell native has reached the Hall of Fame

    Ellwood City Ledger 28 Mar 2025
    Cook went on to retire from officiating in 2018 but recently worked as the NCAA Division I Championship Video Review Official in 2021 and at the Division II level in 2023.
    Edit

    Las Cruces native Ricky Lujan shines for Dallas Baptist in Division II semifinals loss

    Las Cruces Sun News 28 Mar 2025
    Lujan then recorded three games with double-digit points in the NCAA Division II Tournament, including a 27-point performance against Colorado School of Mines in the Patriots' first-ever Elite Eight game at the Division II level.
    Edit

    South Dakota State basketball coaching candidates: 5 possible options to replace Eric Henderson

    Argus Leader 28 Mar 2025
    Sather was hired by North Dakota in May of 2019 following a successful stint at Northern State, where he won back-to-back conference coach of the year awards by leading the Wolves to the NCAA Division II championship game.
    Edit

    Cal State Dominguez Hills men’s basketball advances to Division II championship game

    Daily Breeze 28 Mar 2025
    ... to take a five-point lead late, lost the lead, got a tying 3-pointer by Alex Garcia with 2.8 left to force overtime and eventually pulled away for a 94-83 win in the NCAA Division II tournament.
    ×