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

Mercer County, New Jersey

Mercer County is a county located in the U.S. state of New Jersey. Its county seat is Trenton, the state capital. The county is part of the Trenton, NJ Metropolitan Statistical Area and is considered part of the New York metropolitan area by the United States Census Bureau, but also directly borders the Philadelphia metropolitan area and is included within the Federal Communications Commission's Philadelphia Designated Market Area. As of 2014, Mercer County's Census-estimated population was 371,537, an increase of 1.4% from the 2010 United States Census, when its population was enumerated at 366,513, in turn an increase of 15,752 (4.5%) from the 350,761 enumerated in the 2000 Census, retaining its position as the 12th-most populous county in the state. Mercer County stands among the highest-income counties in the United States, with the Bureau of Economic Analysis having ranked the county as having the 78th-highest per capita income of all 3,113 counties in the United States (and the sixth-highest in New Jersey) as of 2009.

Mercer County, Pennsylvania

Mercer County is a county located in the U.S. state of Pennsylvania. As of the 2010 census, the population was 116,638. Its county seat is Mercer, and its largest city is Hermitage. The county was created in 1800 and later organized in 1803.

Mercer County is included in the Youngstown-Warren-Boardman, OH-PA Metropolitan Statistical Area.

Geography

According to the U.S. Census Bureau, the county has a total area of 683 square miles (1,770 km2), of which 673 square miles (1,740 km2) is land and 10 square miles (26 km2) (1.5%) is water.

Adjacent counties

  • Crawford County (north)
  • Venango County (east)
  • Butler County (southeast)
  • Lawrence County (south)
  • Mahoning County, Ohio (southwest)
  • Trumbull County, Ohio (west)
  • Demographics

    As of the census of 2000, there were 120,293 people, 46,712 households, and 32,371 families residing in the county. The population density was 179 people per square mile (69/km²). There were 49,859 housing units at an average density of 74 per square mile (29/km²). The racial makeup of the county was 93.13% White, 5.25% Black or African American, 0.11% Native American, 0.40% Asian, 0.02% Pacific Islander, 0.17% from other races, and 0.91% from two or more races. 0.67% of the population were Hispanic or Latino of any race. 24.5% were of German, 12.0% Italian, 10.5% Irish, 9.3% English and 6.8% American ancestry according to Census 2000.

    Podcasts:

    • Mercer County

      It's rare to find Stacey Ross without her phone. Each call is life or death but one step closer to helping someone on the other end into recovery. Following a lifelong battle with addiction, the Mercer County native and certified peer recovery specialist became sober at age 44 and is committed to helping others do the same, providing resources for treatment and mentorship to young women. Don’t forget to SUBSCRIBE for daily videos: http://bit.ly/1ERsYqw For full episodes, check out www.njspotlightnews.org Facebook: https://www.facebook.com/njspotlightnews/ Twitter: https://www.twitter.com/njspotlightnews/ Instagram: https://www.instagram.com/njspotlightnews/ TikTok: https://www.tiktok.com/@njspotlightnews?_t=8VUNKN33vpu&_r=1 ----------------- While NJ PBS does not and cannot review e...

      published: 22 Dec 2022
    • Black History Month: The story behind Mercer County's Pandenarium

      The historical marker sits elevated along Route 19. It explains the Pandenarium -- how, in 1854, 63 slaves from Virginia -- freed by their owner -- made their way to Mercer County's East Lackawannock Township and created their own settlement. Stay informed about Youngstown news, weather, sports and entertainment! Follow WKBN on our website: https://www.wkbn.com?ipid=youtubehp

      published: 24 Feb 2022
    • Authorities: Off-Duty Officer Killed In Crash In Mercer County

      Police in New Jersey are investigating after they say an off-duty officer was killed in an accident on Monday.

      published: 20 Jun 2017
    • Mercer County School District votes down elementary merger

      The district voted to make improvements to New Boston and Apollo Elementary School rather than combining the two. Read more: https://www.wqad.com/article/news/local/mercer-county-elementary-improvements/526-a2aa43b8-0783-4092-81c0-37abf3ecd60e Subscribe to WQAD News 8 on YouTube: https://www.youtube.com/c/Wqadnews8/featured?sub_confirmation=1 Other ways to watch News 8: https://www.wqad.com/connect Download the News 8 app on IOS: https://apps.apple.com/us/app/wqad-news-8-quad-cities/id1491061406 Download the News 8 app on Android: https://play.google.com/store/apps/details?id=com.wqad.localtv&hl=en_US&gl=US Newsletter: https://www.wqad.com/email ‘Like’ WQAD on Facebook: https://www.facebook.com/wqad8 Follow WQAD on Twitter: https://twitter.com/wqad Follo...

      published: 17 Feb 2022
    • Mercer County Home Cemetery holds secrets

      A project is underway to determine who has been buried in the Mercer County home cemetery.

      published: 29 Nov 2014
    • Mercer County Police Academy graduation 2019-07-19

      Thursday July 18, 2019. Mercer County Police Academy graduates 42 new officers. Michael Mancuso | NJ Advance Media for NJ.com

      published: 19 Jul 2019
    • Begin Your College Journey at Mercer County Community College

      Pursue an associate degree or obtain a certificate and improve your standing in the job market! Whatever track you are looking to follow, Mercer County Community College has a program that will fit your needs. Registration for Winter Session 2022-23 and Spring Semester 2023 begins on Monday, November 14. Visit gomercer.mccc.edu to get started on your journey today.

      published: 07 Nov 2022
    • Police presence shuts down Mercer County road

      Police presence shuts down Mercer County road Stay informed about Youngstown news, weather, sports and entertainment! Follow WKBN on our website: https://www.wkbn.com?ipid=youtubehp

      published: 18 May 2022
    • Mercer County Food Bank hosts 24-hour event

      Mercer County Food Bank hosts 24-hour pack-a-thon "Ready, Set, Go Orange!" in Sharon, Pa. Stay informed about Youngstown news, weather, sports and entertainment! Follow WKBN on our website: https://www.wkbn.com?ipid=youtubehp

      published: 06 Sep 2024
    • Alleged Racist Slurs and Behavior in Mercer County Schools

      Community members are reacting after reading several posts from parents of Mercer County school students who are claiming their children have been subjected to racist and demeaning behavior on school grounds.

      published: 01 Apr 2022
    Mercer County
    10:39

    Mercer County

    • Order:
    • Duration: 10:39
    • Uploaded Date: 22 Dec 2022
    • views: 548
    It's rare to find Stacey Ross without her phone. Each call is life or death but one step closer to helping someone on the other end into recovery. Following a lifelong battle with addiction, the Mercer County native and certified peer recovery specialist became sober at age 44 and is committed to helping others do the same, providing resources for treatment and mentorship to young women. Don’t forget to SUBSCRIBE for daily videos: http://bit.ly/1ERsYqw For full episodes, check out www.njspotlightnews.org Facebook: https://www.facebook.com/njspotlightnews/ Twitter: https://www.twitter.com/njspotlightnews/ Instagram: https://www.instagram.com/njspotlightnews/ TikTok: https://www.tiktok.com/@njspotlightnews?_t=8VUNKN33vpu&_r=1 ----------------- While NJ PBS does not and cannot review every submission and is not responsible for the content of your comments, NJ Spotlight News reserves the right to delete, remove, move, or edit comments that it, in its sole discretion, deems abusive, defamatory, obscene, or otherwise inappropriate or unacceptable for any reason.  ----------------- NJ Spotlight News with Briana Vannozzi is a nightly news program that airs weekdays on NJ PBS that covers local New Jersey news. Be sure to share with us your story ideas, feedback and tips about news in your neighborhood: https://bit.ly/32zwJDT NJ Spotlight News airs every weeknight at 6, 7:30 and 11 p.m. ET on NJ PBS.
    https://wn.com/Mercer_County
    Black History Month: The story behind Mercer County's Pandenarium
    3:08

    Black History Month: The story behind Mercer County's Pandenarium

    • Order:
    • Duration: 3:08
    • Uploaded Date: 24 Feb 2022
    • views: 302
    The historical marker sits elevated along Route 19. It explains the Pandenarium -- how, in 1854, 63 slaves from Virginia -- freed by their owner -- made their way to Mercer County's East Lackawannock Township and created their own settlement. Stay informed about Youngstown news, weather, sports and entertainment! Follow WKBN on our website: https://www.wkbn.com?ipid=youtubehp
    https://wn.com/Black_History_Month_The_Story_Behind_Mercer_County's_Pandenarium
    Authorities: Off-Duty Officer Killed In Crash In Mercer County
    0:17

    Authorities: Off-Duty Officer Killed In Crash In Mercer County

    • Order:
    • Duration: 0:17
    • Uploaded Date: 20 Jun 2017
    • views: 268
    Police in New Jersey are investigating after they say an off-duty officer was killed in an accident on Monday.
    https://wn.com/Authorities_Off_Duty_Officer_Killed_In_Crash_In_Mercer_County
    Mercer County School District votes down elementary merger
    0:20

    Mercer County School District votes down elementary merger

    • Order:
    • Duration: 0:20
    • Uploaded Date: 17 Feb 2022
    • views: 167
    The district voted to make improvements to New Boston and Apollo Elementary School rather than combining the two. Read more: https://www.wqad.com/article/news/local/mercer-county-elementary-improvements/526-a2aa43b8-0783-4092-81c0-37abf3ecd60e Subscribe to WQAD News 8 on YouTube: https://www.youtube.com/c/Wqadnews8/featured?sub_confirmation=1 Other ways to watch News 8: https://www.wqad.com/connect Download the News 8 app on IOS: https://apps.apple.com/us/app/wqad-news-8-quad-cities/id1491061406 Download the News 8 app on Android: https://play.google.com/store/apps/details?id=com.wqad.localtv&hl=en_US&gl=US Newsletter: https://www.wqad.com/email ‘Like’ WQAD on Facebook: https://www.facebook.com/wqad8 Follow WQAD on Twitter: https://twitter.com/wqad Follow WQAD on Instagram: https://www.instagram.com/wqadnews8/
    https://wn.com/Mercer_County_School_District_Votes_Down_Elementary_Merger
    Mercer County Home Cemetery holds secrets
    1:46

    Mercer County Home Cemetery holds secrets

    • Order:
    • Duration: 1:46
    • Uploaded Date: 29 Nov 2014
    • views: 276
    A project is underway to determine who has been buried in the Mercer County home cemetery.
    https://wn.com/Mercer_County_Home_Cemetery_Holds_Secrets
    Mercer County Police Academy graduation 2019-07-19
    1:28

    Mercer County Police Academy graduation 2019-07-19

    • Order:
    • Duration: 1:28
    • Uploaded Date: 19 Jul 2019
    • views: 3058
    Thursday July 18, 2019. Mercer County Police Academy graduates 42 new officers. Michael Mancuso | NJ Advance Media for NJ.com
    https://wn.com/Mercer_County_Police_Academy_Graduation_2019_07_19
    Begin Your College Journey at Mercer County Community College
    0:23

    Begin Your College Journey at Mercer County Community College

    • Order:
    • Duration: 0:23
    • Uploaded Date: 07 Nov 2022
    • views: 124228
    Pursue an associate degree or obtain a certificate and improve your standing in the job market! Whatever track you are looking to follow, Mercer County Community College has a program that will fit your needs. Registration for Winter Session 2022-23 and Spring Semester 2023 begins on Monday, November 14. Visit gomercer.mccc.edu to get started on your journey today.
    https://wn.com/Begin_Your_College_Journey_At_Mercer_County_Community_College
    Police presence shuts down Mercer County road
    1:20

    Police presence shuts down Mercer County road

    • Order:
    • Duration: 1:20
    • Uploaded Date: 18 May 2022
    • views: 360
    Police presence shuts down Mercer County road Stay informed about Youngstown news, weather, sports and entertainment! Follow WKBN on our website: https://www.wkbn.com?ipid=youtubehp
    https://wn.com/Police_Presence_Shuts_Down_Mercer_County_Road
    Mercer County Food Bank hosts 24-hour event
    1:11

    Mercer County Food Bank hosts 24-hour event

    • Order:
    • Duration: 1:11
    • Uploaded Date: 06 Sep 2024
    • views: 64
    Mercer County Food Bank hosts 24-hour pack-a-thon "Ready, Set, Go Orange!" in Sharon, Pa. Stay informed about Youngstown news, weather, sports and entertainment! Follow WKBN on our website: https://www.wkbn.com?ipid=youtubehp
    https://wn.com/Mercer_County_Food_Bank_Hosts_24_Hour_Event
    Alleged Racist Slurs and Behavior in Mercer County Schools
    1:17

    Alleged Racist Slurs and Behavior in Mercer County Schools

    • Order:
    • Duration: 1:17
    • Uploaded Date: 01 Apr 2022
    • views: 1156
    Community members are reacting after reading several posts from parents of Mercer County school students who are claiming their children have been subjected to racist and demeaning behavior on school grounds.
    https://wn.com/Alleged_Racist_Slurs_And_Behavior_In_Mercer_County_Schools
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 21:49

    Mercer County

    It's rare to find Stacey Ross without her phone. Each call is life or death but one step closer to helping someone on the other end into recovery. Following a lifelong battle with addiction, the Mercer County native and certified peer recovery specialist became sober at age 44 and is committed to helping others do the same, providing resources for treatment and mentorship to young women. Don’t forget to SUBSCRIBE for daily videos: http://bit.ly/1ERsYqw For full episodes, check out www.njspotlightnews.org Facebook: https://www.facebook.com/njspotlightnews/ Twitter: https://www.twitter.com/njspotlightnews/ Instagram: https://www.instagram.com/njspotlightnews/ TikTok: https://www.tiktok.com/@njspotlightnews?_t=8VUNKN33vpu&_r=1 ----------------- While NJ PBS does not and cannot review every submission and is not responsible for the content of your comments, NJ Spotlight News reserves the right to delete, remove, move, or edit comments that it, in its sole discretion, deems abusive, defamatory, obscene, or otherwise inappropriate or unacceptable for any reason.  ----------------- NJ Spotlight News with Briana Vannozzi is a nightly news program that airs weekdays on NJ PBS that covers local New Jersey news. Be sure to share with us your story ideas, feedback and tips about news in your neighborhood: https://bit.ly/32zwJDT NJ Spotlight News airs every weeknight at 6, 7:30 and 11 p.m. ET on NJ PBS.
    10:39
    Mercer County
    It's rare to find Stacey Ross without her phone. Each call is life or death but one step c...
    published: 22 Dec 2022
    Play in Full Screen
    3:08
    Black History Month: The story behind Mercer County's Pandenarium
    The historical marker sits elevated along Route 19. It explains the Pandenarium -- how, in...
    published: 24 Feb 2022
    Play in Full Screen
    0:17
    Authorities: Off-Duty Officer Killed In Crash In Mercer County
    Police in New Jersey are investigating after they say an off-duty officer was killed in an...
    published: 20 Jun 2017
    Play in Full Screen
    0:20
    Mercer County School District votes down elementary merger
    The district voted to make improvements to New Boston and Apollo Elementary School rather ...
    published: 17 Feb 2022
    Play in Full Screen
    1:46
    Mercer County Home Cemetery holds secrets
    A project is underway to determine who has been buried in the Mercer County home cemetery....
    published: 29 Nov 2014
    Play in Full Screen
    1:28
    Mercer County Police Academy graduation 2019-07-19
    Thursday July 18, 2019. Mercer County Police Academy graduates 42 new officers. Michael Ma...
    published: 19 Jul 2019
    Play in Full Screen
    0:23
    Begin Your College Journey at Mercer County Community College
    Pursue an associate degree or obtain a certificate and improve your standing in the job ma...
    published: 07 Nov 2022
    Play in Full Screen
    1:20
    Police presence shuts down Mercer County road
    Police presence shuts down Mercer County road Stay informed about Youngstown news, weathe...
    published: 18 May 2022
    Play in Full Screen
    1:11
    Mercer County Food Bank hosts 24-hour event
    Mercer County Food Bank hosts 24-hour pack-a-thon "Ready, Set, Go Orange!" in Sharon, Pa....
    published: 06 Sep 2024
    Play in Full Screen
    1:17
    Alleged Racist Slurs and Behavior in Mercer County Schools
    Community members are reacting after reading several posts from parents of Mercer County s...
    published: 01 Apr 2022
    Play in Full Screen
    '); } 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: mercer county

    Edit

    10 most expensive homes sold in Mercer County, March 24-30

    NJ 04 Apr 2025
    ... residential real estate sales in Mercer County in the past week.
    Edit

    Longtime administrator, teacher recognized at Children's Center of Mercer County

    The Sharon Herald 04 Apr 2025
    HERMITAGE — When Stephanie Vellente was called into work after hours Monday at the Children’s Center of Mercer County, she was expecting to find the school’s fish tank needed to be fixed ....
    Edit

    Princeton acquires Westminster Choir College property

    The Trentonian 04 Apr 2025
    Judge Lougy approved Princeton’s acquisition on March 5, and the municipality recorded a Declaration of Taking on April 1 with the Mercer County Clerk after depositing funds with the court.
    Edit

    Hopewell Valley boys lacrosse rolls Allentown, looks to become elite team this season

    The Trentonian 04 Apr 2025
    They were already very good last season with an 18-3 record including a Mercer County Tournament championship, but it wasn’t quite good enough to reach a sectional title game, which has been an ...
    Edit

    Illini West softball team falls at Mercer County and Rushville-Industry

    The Hawk Eye 03 Apr 2025
    Mercer County. Illini West softball traveled to Mercer County on Thursday, March 27, and lost 8-1. Mercer County scored two runs in the first inning and three in the third inning off of Hayden Wibbell of the Chargers.
    Edit

    Carlisle with second career walk-off to defeat Mercer County in eight innings

    The Hawk Eye 03 Apr 2025
    Illini West matched up with Mercer County at La Harpe on Thursday, March 27, and won in extra innings, 4-3. Max Kinnamon set Mercer County down in order in the top of the first inning ... Mercer County ...
    Edit

    Civil War program to be held next week at Mercer Cemetery in Trenton

    The Trentonian 03 Apr 2025
    Mercer County will host a program to mark the 160th anniversary of key Civil War ending events on Wednesday, April 9, 2025, from 12 p.m ... pursuit of that victory, and were laid to rest in Mercer County.
    Edit

    Two men arrested for having explosive devices

    The Pioneer News 03 Apr 2025
    During the stop, the trooper identified the driver, Ronald Coffman, 41, from Mercer County, and the passenger, Zebadiah Murphy, 36, from Anderson County ... Murphy and Coffman were both arrested and lodged in the Franklin County Detention Center.
    Edit

    Go Blue Day comes to Lawrenceburg for Child Abuse Prevention Month

    The Pioneer News 03 Apr 2025
    CASA of the Bluegrass is a local program in connection to the national organization that serves Boyle, Mercer, Anderson and Franklin counties.
    Edit

    Game and Fish Department sets spring Advisory Board meetings

    The Jamestown Sun 03 Apr 2025
    The meeting for District 6, including 9 area counties, is on April 21 ... District 7 (Burleigh, Emmons, Grant, Kidder, McLean, Mercer, Morton, Oliver, Sheridan and Sioux counties), 7 p.m., Game and Fish Main Office, 100 N.
    Edit

    New Jersey Attorney General needs bolder stance when dealing with police time theft (L.A. PARKER COLUMN)

    The Trentonian 03 Apr 2025
    ... employed a theme that Platkin’s office identified no reason for prosecution and kicked the case back to the Mercer County Prosecutor’s Office which allowed city officials to determine resolution.
    Edit

    Castellano clubs 2 homers, Simonka fans 17 as Steinert softball starts quest for 3-peat with ...

    The Trentonian 03 Apr 2025
    (Kyle Franko/ Trentonian Photo) ... Show Caption ... Headed to Division I Fairleigh Dickinson University, Simonka is one of four Mercer County pitchers to record wins in two state finals and should she prevail in another she will be the first to win three.
    ×