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

Ohio High School Athletic Association

The Ohio High School Athletic Association (OHSAA) is the governing body of athletic programs for junior and senior high schools in the state of Ohio. The OHSAA governs eligibility of student athletes, resolves disputes, organizes levels of competition by divisional separation of schools according to attendance population, and conducts state championship competitions in all the OHSAA-sanctioned sports.

Membership

There are approximately 820 member high schools and 850 more schools in the 7th-8th grade division of the OHSAA. Most public and private high schools in Ohio belong to the OHSAA.

Structure

Districts

The Association is divided into six districts, each with its own District Athletic Board, including the Central District, East District, Northeast District, Northwest District, Southeast District, and Southwest District.

The District boards conduct Sectional and District tournaments. The main OHSAA board conducts Regional and State tournaments.

Classifications and divisions

Podcasts:

  • OHSAA Division V State Championship 2024: Liberty Center Tigers vs. Ironton Fighting Tigers

    The Ironton Fighting Tigers won their first state championship since 1989 with a 21-17 victory over Liberty Center. Check out the highlights here. Join this channel to get access to perks: https://www.youtube.com/channel/UCvtAwH3YUYEOvSmk9GN-bEg/join

    published: 08 Dec 2024
  • OHSAA Division IV State Championship: Indian Valley Braves vs. Sandusky Perkins Pirates

    The Indian Valley Braves won their first state championship and the first for Tuscarawas County in a thriller. Check out the highlights here. Join this channel to get access to perks: https://www.youtube.com/channel/UCvtAwH3YUYEOvSmk9GN-bEg/join

    published: 08 Dec 2024
  • OHSAA girls soccer investigation: Strongsville-Walsh Jesuit game ends in controversy

    The OHSAA is planning to launch an investigation after a girls soccer regional final match between Strongsville and Walsh Jesuit ended in controversy last Saturday. The game was played at Nordonia High School in Macedonia. "We are going to investigate that situation and incident," said Tim Stried, OHSAA director of media relations. "When we do that its going to take time because we do have to collect reports from both schools involved and the officials." The issue that started it all was caught on camera by Ohio Sports Net. A penalty kick with less than a minute to play led to furious coaches approaching game officials on the soccer field. Several parents stormed the field to protest the game-ending call. Members of the Macedonia Police Department rushed over to diffuse the incident....

    published: 09 Nov 2022
  • OHSAA Division VII State Championship 2024: Maria Stein Marion Local Flyers vs Hillsdale Falcons

    The Marion Local Flyers have now won 64 games in a row and have won their 4th straight championship. Check out the highlights here.

    published: 06 Dec 2024
  • Mateo Medina Sweeps in Boys 400m Final | 2024 OHSAA D1 State Meet

    The boys 400m dash at the Ohio State Meet. Results: 1. 12 Mateo Medina 45.88aPR Elyria 2. 11 Richard Simpson 46.71aPR Pickerington North 3. 12 Karl Dietz 46.87a Chardon 4. 10 Jakob Weatherspoon 47.31aPR Avon 5. 12 Andre Jackson 47.38a Whitehall-Yearling 6. 11 Kaden Ellerbe 47.45aPR Beavercreek 7. 10 Jay'Viar Kerr 47.63aPR Cleveland Heights 8. 12 Joseph Taylor 49.63a St. Johns Jesuit

    published: 02 Jun 2024
  • Marion Local 74 Hillsdale 0 | OHSAA Division 7 Championship Game

    Marion Local continues its dominance with a 74-0 win over Hillsdale in the 2024 OHSAA Division 7 State Championship Game. Check out BuckeyeHuddle.com to get all of the best Ohio State Buckeyes coverage. Our team of contributors will have you up-to-the-minute with recruiting, team coverage and so much more. Join the fastest growing community in all of BuckeyeNation at BuckeyeHuddle.com Join Now: https://buckeyehuddle.com/community/account/upgrades/ 🏈👕SHOP Ohio State gear on Fanatics: http://fanatics.93n6tx.net/WDk33J Get Ohio State stuff on Amazon: https://amzn.to/3T51uJ2 🎤Podcasting equipment: https://amzn.to/3TEN9Dk 🎙Podcasting mics: https://amzn.to/3Tyz8Hk 🎥Video equipment: https://amzn.to/3TGM0Lt

    published: 06 Dec 2024
  • Avon beats Anderson 20-13 to win first Ohio high school football state title in school history

    For Mike Elder and Avon, this was a celebration years in the making, all of the heartbreak and near-misses now undone over 48 minutes on a snowy field in Canton. While the "snow bowl" contested between the Browns and Pittsburgh Steelers two weeks ago was certainly an affair to remember, we're going to go ahead and say the stakes on this Thursday night may have been a little bight higher. We doubt the Eagles, at least, would debate that. With the flakes flying at Tom Benson Hall of Fame Stadium, Avon held off Anderson 20-13 to win the Ohio High School Athletic Association Division II state football championship. It marks the first team state title in school history, regardless of sport, and caps off a remarkable 16-0 season for the Eagles. Though Avon never trailed Thursday night, ...

    published: 06 Dec 2024
  • Boys 400m Final - 2022 OHSAA State Meet

    400m Dash final. Results: 1. 11 Connor Boland 47.67a PR Geneva 2. 12 Logan Doyle 48.43a Twinsburg 3. 10 Karl Dietz 48.62a Chardon 4. 10 Joseph Taylor 48.84a St. Johns Jesuit 5. 12 Drevon Trapp 49.04a Bedford 6. 11 Jackson Herbert 49.09a PR Wadsworth Senior 7. 10 Andre Jackson 49.27a Whitehall-Yearling 8. 11 Keontz Bradley 49.48a Mansfield Senior

    published: 06 Jun 2022
  • Lexington at West Holmes - OHSAA Girls Basketball from WKLM 95.3 FM

    West Holmes welcomes Lexington to the Dungeon! Our coverage begins at 1pm with the tipoff at approximately 1:25. Broadcasters: WKLM Sports Team Video Production by Claxon Communications: Aidan Garabrandt & Owen Garabrandt

    published: 14 Dec 2024
  • 2024 OHSAA Division V State Championship: Liberty Center vs. Ironton

    published: 08 Dec 2024
OHSAA Division V State Championship 2024: Liberty Center Tigers vs. Ironton Fighting Tigers
3:55

OHSAA Division V State Championship 2024: Liberty Center Tigers vs. Ironton Fighting Tigers

  • Order:
  • Duration: 3:55
  • Uploaded Date: 08 Dec 2024
  • views: 4861
The Ironton Fighting Tigers won their first state championship since 1989 with a 21-17 victory over Liberty Center. Check out the highlights here. Join this channel to get access to perks: https://www.youtube.com/channel/UCvtAwH3YUYEOvSmk9GN-bEg/join
https://wn.com/Ohsaa_Division_V_State_Championship_2024_Liberty_Center_Tigers_Vs._Ironton_Fighting_Tigers
OHSAA Division IV State Championship: Indian Valley Braves vs. Sandusky Perkins Pirates
4:20

OHSAA Division IV State Championship: Indian Valley Braves vs. Sandusky Perkins Pirates

  • Order:
  • Duration: 4:20
  • Uploaded Date: 08 Dec 2024
  • views: 3714
The Indian Valley Braves won their first state championship and the first for Tuscarawas County in a thriller. Check out the highlights here. Join this channel to get access to perks: https://www.youtube.com/channel/UCvtAwH3YUYEOvSmk9GN-bEg/join
https://wn.com/Ohsaa_Division_Iv_State_Championship_Indian_Valley_Braves_Vs._Sandusky_Perkins_Pirates
OHSAA girls soccer investigation: Strongsville-Walsh Jesuit game ends in controversy
1:59

OHSAA girls soccer investigation: Strongsville-Walsh Jesuit game ends in controversy

  • Order:
  • Duration: 1:59
  • Uploaded Date: 09 Nov 2022
  • views: 4006
The OHSAA is planning to launch an investigation after a girls soccer regional final match between Strongsville and Walsh Jesuit ended in controversy last Saturday. The game was played at Nordonia High School in Macedonia. "We are going to investigate that situation and incident," said Tim Stried, OHSAA director of media relations. "When we do that its going to take time because we do have to collect reports from both schools involved and the officials." The issue that started it all was caught on camera by Ohio Sports Net. A penalty kick with less than a minute to play led to furious coaches approaching game officials on the soccer field. Several parents stormed the field to protest the game-ending call. Members of the Macedonia Police Department rushed over to diffuse the incident. In 2019, 3News spoke to Scott Sandvick, who has been an Ohio sports official for more than 25 years. He recalled multiple times that he's had to make tough calls. "I've been escorted out with police. I've had fans taken out with handcuffs by police," Sandvick said. While he understands that criticism comes with the job, that criticism is getting out of control. "At the end of the day when someone loses, they want to say it's our fault. Virtually every game we do," he added. After Strongsville won Saturday's game, two Walsh coaches were given a red card after the match was called. They now face automatic suspensions for the first two games of next year. Carmen Blackwell reports: https://www.wkyc.com/article/sports/high-school/ohsaa-investigate-controversial-ending-strongsville-walsh-jesuit-girls-soccer-tournament-game/95-f168247a-8c51-40ba-9735-52fcae84409e -- At 3News, we’re not here to tell you the news, we’re here to share the stories that you say matter most to you. Share your ideas, thoughts, concerns and engage in conversations about the communities in which we all call home. Follow 3News on Social: Facebook: https://www.facebook.com/wkyc.channel3/ Twitter: https://twitter.com/wkyc Instagram: https://www.instagram.com/wkyc3/ Visit our site: https://www.wkyc.com/ And be sure to download our app here: https://wkyc.com/app
https://wn.com/Ohsaa_Girls_Soccer_Investigation_Strongsville_Walsh_Jesuit_Game_Ends_In_Controversy
OHSAA Division VII State Championship 2024: Maria Stein Marion Local Flyers vs Hillsdale Falcons
4:35

OHSAA Division VII State Championship 2024: Maria Stein Marion Local Flyers vs Hillsdale Falcons

  • Order:
  • Duration: 4:35
  • Uploaded Date: 06 Dec 2024
  • views: 3200
The Marion Local Flyers have now won 64 games in a row and have won their 4th straight championship. Check out the highlights here.
https://wn.com/Ohsaa_Division_Vii_State_Championship_2024_Maria_Stein_Marion_Local_Flyers_Vs_Hillsdale_Falcons
Mateo Medina Sweeps in Boys 400m Final | 2024 OHSAA D1 State Meet
0:57

Mateo Medina Sweeps in Boys 400m Final | 2024 OHSAA D1 State Meet

  • Order:
  • Duration: 0:57
  • Uploaded Date: 02 Jun 2024
  • views: 2520
The boys 400m dash at the Ohio State Meet. Results: 1. 12 Mateo Medina 45.88aPR Elyria 2. 11 Richard Simpson 46.71aPR Pickerington North 3. 12 Karl Dietz 46.87a Chardon 4. 10 Jakob Weatherspoon 47.31aPR Avon 5. 12 Andre Jackson 47.38a Whitehall-Yearling 6. 11 Kaden Ellerbe 47.45aPR Beavercreek 7. 10 Jay'Viar Kerr 47.63aPR Cleveland Heights 8. 12 Joseph Taylor 49.63a St. Johns Jesuit
https://wn.com/Mateo_Medina_Sweeps_In_Boys_400M_Final_|_2024_Ohsaa_D1_State_Meet
Marion Local 74 Hillsdale 0 | OHSAA Division 7 Championship Game
3:09

Marion Local 74 Hillsdale 0 | OHSAA Division 7 Championship Game

  • Order:
  • Duration: 3:09
  • Uploaded Date: 06 Dec 2024
  • views: 6479
Marion Local continues its dominance with a 74-0 win over Hillsdale in the 2024 OHSAA Division 7 State Championship Game. Check out BuckeyeHuddle.com to get all of the best Ohio State Buckeyes coverage. Our team of contributors will have you up-to-the-minute with recruiting, team coverage and so much more. Join the fastest growing community in all of BuckeyeNation at BuckeyeHuddle.com Join Now: https://buckeyehuddle.com/community/account/upgrades/ 🏈👕SHOP Ohio State gear on Fanatics: http://fanatics.93n6tx.net/WDk33J Get Ohio State stuff on Amazon: https://amzn.to/3T51uJ2 🎤Podcasting equipment: https://amzn.to/3TEN9Dk 🎙Podcasting mics: https://amzn.to/3Tyz8Hk 🎥Video equipment: https://amzn.to/3TGM0Lt
https://wn.com/Marion_Local_74_Hillsdale_0_|_Ohsaa_Division_7_Championship_Game
Avon beats Anderson 20-13 to win first Ohio high school football state title in school history
1:33

Avon beats Anderson 20-13 to win first Ohio high school football state title in school history

  • Order:
  • Duration: 1:33
  • Uploaded Date: 06 Dec 2024
  • views: 3793
For Mike Elder and Avon, this was a celebration years in the making, all of the heartbreak and near-misses now undone over 48 minutes on a snowy field in Canton. While the "snow bowl" contested between the Browns and Pittsburgh Steelers two weeks ago was certainly an affair to remember, we're going to go ahead and say the stakes on this Thursday night may have been a little bight higher. We doubt the Eagles, at least, would debate that. With the flakes flying at Tom Benson Hall of Fame Stadium, Avon held off Anderson 20-13 to win the Ohio High School Athletic Association Division II state football championship. It marks the first team state title in school history, regardless of sport, and caps off a remarkable 16-0 season for the Eagles. Though Avon never trailed Thursday night, the Raptors nearly stole victory with a methodical 19-play drive at the end of regulation. But after escaping pressure, Justice Burnam's last-ditch pass to the end zone landed incomplete, being batted away by Aiden Atkins as time expired. Since the establishment of the OHSAA playoffs in 1972, Avon is just the third Lorain County school to win at least one state football title. Prior to tonight, it hadn't been done since 2003, when the Eagles' archrivals in Avon Lake also claimed the D-II crown with a victory over Trenton Edgewood. READ MORE: https://www.wkyc.com/article/sports/high-school/hs-football/avon-beats-anderson-20-13-win-first-ohio-high-school-football-state-championship-school-history/95-74d7ba14-2c95-42c3-a59a-5085085dc0fb -- At 3News, we’re not here to tell you the news, we’re here to share the stories that you say matter most to you. Share your ideas, thoughts, concerns and engage in conversations about the communities in which we all call home. Follow 3News on Social: Facebook: https://www.facebook.com/wkyc.channel3/   Twitter: https://twitter.com/wkyc   Instagram: https://www.instagram.com/wkyc3/   Visit our site: https://www.wkyc.com/ And be sure to download our app here: https://wkyc.com/app
https://wn.com/Avon_Beats_Anderson_20_13_To_Win_First_Ohio_High_School_Football_State_Title_In_School_History
Boys 400m Final - 2022 OHSAA State Meet
1:02

Boys 400m Final - 2022 OHSAA State Meet

  • Order:
  • Duration: 1:02
  • Uploaded Date: 06 Jun 2022
  • views: 7230
400m Dash final. Results: 1. 11 Connor Boland 47.67a PR Geneva 2. 12 Logan Doyle 48.43a Twinsburg 3. 10 Karl Dietz 48.62a Chardon 4. 10 Joseph Taylor 48.84a St. Johns Jesuit 5. 12 Drevon Trapp 49.04a Bedford 6. 11 Jackson Herbert 49.09a PR Wadsworth Senior 7. 10 Andre Jackson 49.27a Whitehall-Yearling 8. 11 Keontz Bradley 49.48a Mansfield Senior
https://wn.com/Boys_400M_Final_2022_Ohsaa_State_Meet
Lexington at West Holmes - OHSAA Girls Basketball from WKLM 95.3 FM
2:05:36

Lexington at West Holmes - OHSAA Girls Basketball from WKLM 95.3 FM

  • Order:
  • Duration: 2:05:36
  • Uploaded Date: 14 Dec 2024
  • views: 653
West Holmes welcomes Lexington to the Dungeon! Our coverage begins at 1pm with the tipoff at approximately 1:25. Broadcasters: WKLM Sports Team Video Production by Claxon Communications: Aidan Garabrandt & Owen Garabrandt
https://wn.com/Lexington_At_West_Holmes_Ohsaa_Girls_Basketball_From_Wklm_95.3_Fm
2024 OHSAA Division V State Championship: Liberty Center vs. Ironton
3:57:11

2024 OHSAA Division V State Championship: Liberty Center vs. Ironton

  • Order:
  • Duration: 3:57:11
  • Uploaded Date: 08 Dec 2024
  • views: 8746
https://wn.com/2024_Ohsaa_Division_V_State_Championship_Liberty_Center_Vs._Ironton
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 6:24:17

OHSAA Division V State Championship 2024: Liberty Center Tigers vs. Ironton Fighting Tigers

The Ironton Fighting Tigers won their first state championship since 1989 with a 21-17 victory over Liberty Center. Check out the highlights here. Join this channel to get access to perks: https://www.youtube.com/channel/UCvtAwH3YUYEOvSmk9GN-bEg/join
3:55
OHSAA Division V State Championship 2024: Liberty Center Tigers vs. Ironton Fighting Tigers
The Ironton Fighting Tigers won their first state championship since 1989 with a 21-17 vic...
published: 08 Dec 2024
Play in Full Screen
4:20
OHSAA Division IV State Championship: Indian Valley Braves vs. Sandusky Perkins Pirates
The Indian Valley Braves won their first state championship and the first for Tuscarawas C...
published: 08 Dec 2024
Play in Full Screen
1:59
OHSAA girls soccer investigation: Strongsville-Walsh Jesuit game ends in controversy
The OHSAA is planning to launch an investigation after a girls soccer regional final match...
published: 09 Nov 2022
Play in Full Screen
4:35
OHSAA Division VII State Championship 2024: Maria Stein Marion Local Flyers vs Hillsdale Falcons
The Marion Local Flyers have now won 64 games in a row and have won their 4th straight cha...
published: 06 Dec 2024
Play in Full Screen
0:57
Mateo Medina Sweeps in Boys 400m Final | 2024 OHSAA D1 State Meet
The boys 400m dash at the Ohio State Meet. Results: 1. 12 Mateo Medina 45.88aPR Elyria ...
published: 02 Jun 2024
Play in Full Screen
3:09
Marion Local 74 Hillsdale 0 | OHSAA Division 7 Championship Game
Marion Local continues its dominance with a 74-0 win over Hillsdale in the 2024 OHSAA Divi...
published: 06 Dec 2024
Play in Full Screen
1:33
Avon beats Anderson 20-13 to win first Ohio high school football state title in school history
For Mike Elder and Avon, this was a celebration years in the making, all of the heartbreak...
published: 06 Dec 2024
Play in Full Screen
1:02
Boys 400m Final - 2022 OHSAA State Meet
400m Dash final. Results: 1. 11 Connor Boland 47.67a PR Geneva 2. 12 Logan Doyle 48.4...
published: 06 Jun 2022
Play in Full Screen
2:05:36
Lexington at West Holmes - OHSAA Girls Basketball from WKLM 95.3 FM
West Holmes welcomes Lexington to the Dungeon! Our coverage begins at 1pm with the tipoff...
published: 14 Dec 2024
Play in Full Screen
3:57:11
2024 OHSAA Division V State Championship: Liberty Center vs. Ironton
published: 08 Dec 2024
Play in Full Screen

Ohio High School Athletic Association

The Ohio High School Athletic Association (OHSAA) is the governing body of athletic programs for junior and senior high schools in the state of Ohio. The OHSAA governs eligibility of student athletes, resolves disputes, organizes levels of competition by divisional separation of schools according to attendance population, and conducts state championship competitions in all the OHSAA-sanctioned sports.

Membership

There are approximately 820 member high schools and 850 more schools in the 7th-8th grade division of the OHSAA. Most public and private high schools in Ohio belong to the OHSAA.

Structure

Districts

The Association is divided into six districts, each with its own District Athletic Board, including the Central District, East District, Northeast District, Northwest District, Southeast District, and Southwest District.

The District boards conduct Sectional and District tournaments. The main OHSAA board conducts Regional and State tournaments.

Classifications and divisions

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

Edit

OHSAA announces 2025 football divisions and regions

The Logan Daily News 03 May 2025
COLUMBUS, Ohio — The Ohio High School Athletic Association has announced the new divisional breakdowns and playoff regions for 2025 football season ... .
Edit

Change can be good for OHSAA tournaments: Matt Goul’s Prep Talk

Cleveland 02 May 2025
CLEVELAND, Ohio — When the Ohio High School Athletic Association expanded its football postseason to 16 teams per region in 2021, most considered it a money grab ....
Edit

OHSAA football regions announced. Here are the teams that are on the move

The Daily Jeff 02 May 2025
COLUMBUSArea football teams found out their regional assignments on May 1, as the Ohio High School Athletic Association announced those assignments ... More. OHSAA basketball state tournaments returning to traditional final four ... @brandonhannahs
Edit

High School Football: OHSAA announces division changes for this fall

Springfield News-Sun 02 May 2025
The OHSAA divisional and regional assignments were released at the Ohio Prep Sports Writers Association annual meeting in Columbus on Thursday morning ... 2025 OHSAA football playoff regions in Southwest Ohio for 2025.
Edit

2025 OHSAA football playoff regions in Southwest Ohio for 2025

Springfield News-Sun 02 May 2025
The OHSAA rang in May by announcing divisional alignments for football for the 2025 season ... Fall practice is set to begin Aug. 1 with the first Friday night of football games being Aug. 22 ... Division I ... 1 ... 2 ... 3 ... OHSAA announces division changes for this fall.
Edit

Everything is on the table: OHSAA looking at potential changes to football playoff format

Mansfield News Journal 02 May 2025
After football coaches held an internal survey, Rugg found it important for the OHSAA to have its own survey with all 706 schools so he could really see what people involved in football were thinking.
Edit

Bucyrus baseball's trek along the road to rebuilding

Telegraph Forum 02 May 2025
BUCYRUS - When Sean Maudsley retired after 13 seasons at the helm of the Bucyrus baseball program, the search for a replacement began. Little did they know it would be Thad Hensel, a 2017 Wynford alumnus. Yes — a Royal taking over the Redmen ... Twitter/X.
Edit

'It was fun while it lasted': Memorial Field House as final four venue was a one-time thing

Canton Repository 02 May 2025
Bogdan is the Canton City Schools administrator who arranged to bring OHSAA “final four” basketball to Memorial Field House in March. The OHSAA needed extra venues after an expansion from four divisions to seven.
Edit

OHSAA announces return to traditional basketball final four

The Crescent News 01 May 2025
After criticism to the formatting of the state basketball final four amidst expansion to seven divisions this past winter, the Ohio High School Athletic Association announced a major change on Wednesday ... .
Edit

OHSAA announces football divisional alignment for 2025 season

Cleveland 01 May 2025
COLUMBUS, Ohio — The divisional alignments are set for the 2025 high school football season ....
×