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

Paul Powell (director)

Paul Mahlon Powell (September 6, 1881 July 2, 1944) was an American journalist, director, producer, screenwriter and actor. Powell was most active during the silent film era and is best known for directing Mary Pickford in Pollyanna (1920).

Career

Born in Peoria, Illinois, Powell was one of six children of Charles Henry and Anna Clara Powell (née von Schoenheider). His father was a publisher who founded the Peoria Evening Star. Powell was educated in Peoria and later attended Bradley Polytechnic Institute. After graduation, he worked at his father's newspaper as a typesetter and editor before becoming a reporter.

In the early 1900s, Powell worked as a reporter for the Chicago Tribune and the Los Angeles Express. In 1910, he quit his job as a reporter to work in the film industry. The following year, he became the assistant of director and screenwriter Wilbert Melville. In 1914, D. W. Griffith hired Powell to be the director of Mutual Film Corporation films. Two years later, Griffith hired Powell to direct features for Triangle-Fine Arts Film Corporation. While working for Triangle-Fine Arts, Powell directed Mary Pickford in the film adaptation of the 1913 novel Pollyanna. The film was a tremendous success and grossed $1.1 million upon its release. Powell also supported a young Rudolph Valentino while working on films such as A Society Sensation and All Night, who later recalled "He was the first to say, 'Stick to it and you'll make a name for yourself.'" Valentino later became one of the silent era's most cherished stars.

Paul Powell

Paul Powell may refer to:

  • Paul Powell (minister), retired Dean of Baylor University's George W. Truett Theological Seminary
  • Paul Powell (director) (18811944), American film director
  • Paul Powell (politician) (19021970), Illinois Secretary of State in the 1960s
  • Paul Powell (baseball) (1948), American baseball player
  • Paul Powell (footballer) (1978), English footballer
  • Paul Warner Powell (19782010), Executed American murderer
  • Paul Powell (writer), British writer
  • Paul Powell (footballer)

    Paul Powell (born 30 June 1978 in Wallingford, England) is a professional footballer, currently playing for Milton United after leaving Didcot Casuals in 2013 as well as Didcot Town. He plays as a midfielder.

    References

  • "FOOTBALL: Elkins keen on Powell return (From Oxford Mail)". Oxfordmail.co.uk. 2012-09-28. Retrieved 2012-12-14.
  • External links

    Paul Powell career statistics at Soccerbase


    Paul Powell (writer)

    Paul Powell is a British comedy writer and producer, best known for his work on Miranda, Al Murray's Happy Hour and Smack The Pony.

    Career

    Powell attended St Edmund Hall, Oxford where he studied English Literature and performed in the Oxford Revue alongside film director Richard Bracewell.

    He started his career in 1991 by writing sketches for the Radio 4 series Week Ending before joining the writing team for Spitting Image where he collaborated with Georgia Pritchett, Kevin Cecil and Andy Riley.

    In 1995 he worked with Dan Gaster, writing and performing in two series of the Radio 4 sketch show We Know Everything.

    With Dan Gaster, Will Ing and Ben Silburn, he wrote and performed in Stuff The Week, a late night topical comedy show for ITV.

    His television work includes Miranda, Alexander Armstrong's Big Ask, Al Murray’s Happy Hour, Have I Got News For You, Mock The Week, Would I Lie To You, Smith & Jones, The One Griff, TV To Go, The Guest List, Top Gear, Text Santa, Doctor Who Live: The Next Doctor and co-writing two episodes of Life Of Riley.

    Podcasts:

    • The Killer Who Wrote a Letter (PAUL WARNER POWELL)

      In today's true-crime documentary, we're covering the disturbing case of Stacie Reed's murder case. This true story shows, on January 1999. One year before Y2K, the last year of the second millennium, brought with it positive innovations like Limewire — the first internet file sharing site — and the launch of the Mars Polar Lander. It was also a year marred by violence. From the murder of James Byrd Jr. by a white supremacist in Texas, to the Columbine High School Massacre, the final year of the second millennium was as bloody as it was hopeful. And at the start was the case of Paul Warner Powell. Join us for a storytime covering Stacie Reed's case. If you like to watch more solved cases and murder mysteries, subscribe: https://www.youtube.com/channel/UC-AlnKKt2iERlIdGwIiUPDw?sub_c...

      published: 13 Jan 2022
    • Paul Warner Powell: The ‘Stupid’ Mistake That Landed Him on Death Row Twice-Remembering Stacie Reed

      This video delves into the chilling story of Paul Warren Powell, a man who once walked among us but whose actions led him down a dark path to Virginia’s death row. We’ll explore the crimes that shocked a community, the trial that gripped a nation, and the execution that marked the end of a chapter in Virginia’s history. Join us as we unravel the complex narrative of justice, punishment, and the human capacity for good and evil. Viewer discretion is advised. Become a member on my channel for perks. Thank you for the support!: https://www.youtube.com/channel/UCfBFUDu0BvPg1h8MCV11mcQ/join If you are willing to support my channel in a different way, I would love for you to join my patreon https://www.patreon.com/bePatron?u=34935398 Copyright Disclaimer under section 107 of the Copyright ...

      published: 25 Dec 2023
    • The Bizarre Case of Paul Warner Powell: The Man Who Sent Himself to the Electric Chair

      Start building your ideal daily routine! The first 100 people who click on the link will get 25% OFF Fabulous Premium ➡️ https://thefab.co/thecasualcriminalist3 Simon's Social Media: Twitter: https://twitter.com/SimonWhistler Instagram: https://www.instagram.com/simonwhistler/ This video is #sponsored by Fabulous. Love content? Check out Simon's other YouTube Channels: Biographics: https://www.youtube.com/channel/UClnDI2sdehVm1zm_LmUHsjQ Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw Warographics: https://www.youtube.com/channel/UC9h8BDcXwkhZtnqoQJ7PggA MegaProjects: https://www.youtube.com/channel/UC0woBco6Dgcxt0h8SwyyOmw SideProjects: https://www.youtube.com/channel/UC3Wn3dABlgESm8Bzn8Vamgg Into The Shadows: https://www.youtube.com/c/IntotheShadows TopTenz: htt...

      published: 30 Jan 2023
    • HE KILLED THEN BRAGGED - Paul Warner Powell - The murder of Stacie Reed | True Crime with Emma Kenny

      Stacie Reed was friends with a young man called Paul Warner Powell. Let’s just say that Powell interests were not what we would call healthy. Powell was jealous that stacie had a boyfriend so he decided to take matters into his own hands. Join me in my latest True Crime episode where I take you through a story that is full of twists and turns. Em x — Join Emma’s channel membership to get access to perks: https://www.youtube.com/channel/UCwO9D_qzsnrm-xq2lRfhiag/join — MERCH STORE - https://www.emmakennytv.com/shop — EMMA KENNY PATREON - https://www.patreon.com/emmakennytv — Business email : youtube@dustedmedia.com Website - https://www.ekenny.co.uk — Serial Killer next door stage tour dates - https://www.emmakennytv.com/serial-killer-next-door-tour — PAYPAL DONATE - https://www....

      published: 08 May 2022
    • JURISPRUDENTIALLY CONFUSED - EXECUTION OF Paul Warner Powell

      hello everyone this video is on Paul Warner Powell DISCLAIMER ....... Death Row is a Channel that educates and also does not in anyway encourage any actions or behaviors, that might land anyone in jail or on death row. Death row channel does not accept any racial, profanity,sexism or any negative discussion aimed at an individual. death row channel will delete any comment with such content THIS VIDEO, AND ALL THE OTHERS IN THIS CHANNEL, are based on publicly available information unless otherwise noted. WITH THE MOST ACCURATE INFORMATION I COULD GET TROUGH EXTENSIVE RESEARCH, ALL ARE FOR EDUCATIONAL PURPOSES ONLY. Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, s...

      published: 13 Jan 2022
    • Paul Warner Powell

      Paul Warner Powell was a convicted murderer and rapist who was executed by the Commonwealth of Virginia in the state's electric chair.

      published: 22 May 2020
    • Murderer punches his attorney after being sentenced to death for brutal rape and killing of girl

      Joseph Zieler, 61, (main and bottom right) on Monday was sentenced to death in the slayings of 11-year-old Robin Cornell (bottom left) and her babysitter, Lisa Story, 32, (bottom middle) who were raped and suffocated in 1990. Zieler asked for the cameras in the room to be taken down before using an expletive and then elbowing attorney Kevin Shirley in the face. Three bailiffs quickly tackled the man - who appeared to have 'killer' etched on his teeth - to the ground before escorting him out of the courtroom within seconds. Zieler, who was arrested in 2016 - 26 years after the cold case murders - was expected to plead with the judge against the jury's death recommendation. The punch came as Zieler - who was still in handcuffs - appeared to be trying to quietly deliver a message to his long-...

      published: 27 Jun 2023
    • 6 Most RUTHLESS Killers Reactions to DEATH Sentences..

      Discover the chilling and intense reactions of the most violent criminals as they face the ultimate punishment: death sentences. In this gripping video, we delve into the courtroom proceedings, capturing the raw emotions, explosive outbursts, and shocking revelations that unfold when these notorious individuals receive their verdicts. Witness the dramatic moments as these killers, known for their heinous acts, confront the reality of their impending fate. Explore the justice system's inner workings as judges deliver the final sentences, and observe the riveting reactions that range from remorse to defiance, from desperation to unexpected twists. Join us on this compelling journey as we analyze and discuss these high-profile cases, shedding light on the minds of the most violent criminals...

      published: 25 May 2023
    • Judge sentences Daughter to Death.. (emotional)

      Judge sentences Daughter to Death.. (emotional) Judge Destroys Convict Caught Pretending to be Crazy.. https://www.youtube.com/watch?v=tiars9dgCV8&t=6s What pretending to be crazy looks like - JCS - Criminal Psychology https://www.youtube.com/watch?v=Mwt35SEeR9w 10 GUILTY TEENAGE Convicts REACTING to LIFE SENTENCES https://www.youtube.com/watch?v=hDZ7YAt_pPY Killer Laughs at Dad Crying for Daughter, He Snaps.. https://www.youtube.com/watch?v=pA8LctjF-I8 Little Girl Chooses Heaven over Hospital.. (emotional) https://www.youtube.com/watch?v=J_sSuIQ-Nv4 Little Girl Goes To Heaven While Her Parents Watching (emotional) https://www.youtube.com/watch?v=xdCubR6lRYw Teen caught smiling during sentencing in of Ann Arbor student https://www.youtube.com/watch?v=DH5lJXkQOzA Dad Jumps Over Tab...

      published: 23 Aug 2021
    • The Most Incredible Moments In Court

      For copyright matters, please contact: bosstech148@gmail.com Welcome to Topdiscovery! Here, you'll find all the most interesting and mind-blowing discoveries we've come across. Our videos are packed with fun and engaging content that will leave you saying, "Wow, I didn't know that!" From the strange and bizarre to the latest scientific breakthroughs, we've got it all. So why not join us on this wild ride of discovery and see for yourself just how fascinating the world can be? Subscribe now and let the fun begin! Disclaimer: The content presented in our videos is intended solely for entertainment purposes. While we may draw upon facts, rumors, and fiction, viewers should not interpret any part of the content as factual or definitive information. Please enjoy responsibly.

      published: 03 Dec 2022
    The Killer Who Wrote a Letter (PAUL WARNER POWELL)
    11:41

    The Killer Who Wrote a Letter (PAUL WARNER POWELL)

    • Order:
    • Duration: 11:41
    • Uploaded Date: 13 Jan 2022
    • views: 62852
    In today's true-crime documentary, we're covering the disturbing case of Stacie Reed's murder case. This true story shows, on January 1999. One year before Y2K, the last year of the second millennium, brought with it positive innovations like Limewire — the first internet file sharing site — and the launch of the Mars Polar Lander. It was also a year marred by violence. From the murder of James Byrd Jr. by a white supremacist in Texas, to the Columbine High School Massacre, the final year of the second millennium was as bloody as it was hopeful. And at the start was the case of Paul Warner Powell. Join us for a storytime covering Stacie Reed's case. If you like to watch more solved cases and murder mysteries, subscribe: https://www.youtube.com/channel/UC-AlnKKt2iERlIdGwIiUPDw?sub_confirmation=1 Watch more true crime stories here: https://www.youtube.com/playlist?list=PLl74W9q8g_w49ji7U9ueIU-gSS9V2es0N This channel is inspired by the great work of "Anna Solves", "That Chapter" & "Explore with Us". You guys rock! #paulwarnerpowell #truecrimedocumentaries #truecrimestories
    https://wn.com/The_Killer_Who_Wrote_A_Letter_(Paul_Warner_Powell)
    Paul Warner Powell: The ‘Stupid’ Mistake That Landed Him on Death Row Twice-Remembering Stacie Reed
    24:56

    Paul Warner Powell: The ‘Stupid’ Mistake That Landed Him on Death Row Twice-Remembering Stacie Reed

    • Order:
    • Duration: 24:56
    • Uploaded Date: 25 Dec 2023
    • views: 40278
    This video delves into the chilling story of Paul Warren Powell, a man who once walked among us but whose actions led him down a dark path to Virginia’s death row. We’ll explore the crimes that shocked a community, the trial that gripped a nation, and the execution that marked the end of a chapter in Virginia’s history. Join us as we unravel the complex narrative of justice, punishment, and the human capacity for good and evil. Viewer discretion is advised. Become a member on my channel for perks. Thank you for the support!: https://www.youtube.com/channel/UCfBFUDu0BvPg1h8MCV11mcQ/join If you are willing to support my channel in a different way, I would love for you to join my patreon https://www.patreon.com/bePatron?u=34935398 Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. DISCLAIMER **All videos are written by me by gathering information from different sources and news outlets. I do not copy anyone's work** The videos on this channel are made for educational purposes only. Information used in this video has been compiled from different sources online. Despite tone, I am neutral and stick to the facts unless I communicate my opinion or speculations on the topic at hand.
    https://wn.com/Paul_Warner_Powell_The_‘Stupid’_Mistake_That_Landed_Him_On_Death_Row_Twice_Remembering_Stacie_Reed
    The Bizarre Case of Paul Warner Powell: The Man Who Sent Himself to the Electric Chair
    48:42

    The Bizarre Case of Paul Warner Powell: The Man Who Sent Himself to the Electric Chair

    • Order:
    • Duration: 48:42
    • Uploaded Date: 30 Jan 2023
    • views: 290812
    Start building your ideal daily routine! The first 100 people who click on the link will get 25% OFF Fabulous Premium ➡️ https://thefab.co/thecasualcriminalist3 Simon's Social Media: Twitter: https://twitter.com/SimonWhistler Instagram: https://www.instagram.com/simonwhistler/ This video is #sponsored by Fabulous. Love content? Check out Simon's other YouTube Channels: Biographics: https://www.youtube.com/channel/UClnDI2sdehVm1zm_LmUHsjQ Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw Warographics: https://www.youtube.com/channel/UC9h8BDcXwkhZtnqoQJ7PggA MegaProjects: https://www.youtube.com/channel/UC0woBco6Dgcxt0h8SwyyOmw SideProjects: https://www.youtube.com/channel/UC3Wn3dABlgESm8Bzn8Vamgg Into The Shadows: https://www.youtube.com/c/IntotheShadows TopTenz: https://www.youtube.com/user/toptenznet Today I Found Out: https://www.youtube.com/user/TodayIFoundOut Highlight History: https://www.youtube.com/channel/UCnb-VTwBHEV3gtiB9di9DZQ Business Blaze: https://www.youtube.com/channel/UCYY5GWf7MHFJ6DZeHreoXgw Decoding the Unknown: https://www.youtube.com/channel/UCZdWrz8pF6B5Y_c6Zi6pmdQ
    https://wn.com/The_Bizarre_Case_Of_Paul_Warner_Powell_The_Man_Who_Sent_Himself_To_The_Electric_Chair
    HE KILLED THEN BRAGGED - Paul Warner Powell - The murder of Stacie Reed | True Crime with Emma Kenny
    1:09:50

    HE KILLED THEN BRAGGED - Paul Warner Powell - The murder of Stacie Reed | True Crime with Emma Kenny

    • Order:
    • Duration: 1:09:50
    • Uploaded Date: 08 May 2022
    • views: 98836
    Stacie Reed was friends with a young man called Paul Warner Powell. Let’s just say that Powell interests were not what we would call healthy. Powell was jealous that stacie had a boyfriend so he decided to take matters into his own hands. Join me in my latest True Crime episode where I take you through a story that is full of twists and turns. Em x — Join Emma’s channel membership to get access to perks: https://www.youtube.com/channel/UCwO9D_qzsnrm-xq2lRfhiag/join — MERCH STORE - https://www.emmakennytv.com/shop — EMMA KENNY PATREON - https://www.patreon.com/emmakennytv — Business email : youtube@dustedmedia.com Website - https://www.ekenny.co.uk — Serial Killer next door stage tour dates - https://www.emmakennytv.com/serial-killer-next-door-tour — PAYPAL DONATE - https://www.paypal.com/donate/?hosted_button_id=ACRBP86KLBB76 — CONTRIBEE - http://contribee.com/emmakennytv — Follow me on: Twitter - https://www.twitter.com/emmakennytv Facebook - https://www.facebook.com/emmakennytv Instagram - https://www.instagram.com/emmakennytv TikTok - https://www.tiktok.com/@emmakennytv? Wellbeing youtube - https://www.youtube.com/emmakennywellbeing — #EmmaKenny #TrueCrime #PaulWarnerPowell #StacieReed #KristieReed
    https://wn.com/He_Killed_Then_Bragged_Paul_Warner_Powell_The_Murder_Of_Stacie_Reed_|_True_Crime_With_Emma_Kenny
    JURISPRUDENTIALLY CONFUSED - EXECUTION OF Paul Warner Powell
    11:07

    JURISPRUDENTIALLY CONFUSED - EXECUTION OF Paul Warner Powell

    • Order:
    • Duration: 11:07
    • Uploaded Date: 13 Jan 2022
    • views: 34690
    hello everyone this video is on Paul Warner Powell DISCLAIMER ....... Death Row is a Channel that educates and also does not in anyway encourage any actions or behaviors, that might land anyone in jail or on death row. Death row channel does not accept any racial, profanity,sexism or any negative discussion aimed at an individual. death row channel will delete any comment with such content THIS VIDEO, AND ALL THE OTHERS IN THIS CHANNEL, are based on publicly available information unless otherwise noted. WITH THE MOST ACCURATE INFORMATION I COULD GET TROUGH EXTENSIVE RESEARCH, ALL ARE FOR EDUCATIONAL PURPOSES ONLY. Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Join this channel to get access to perks: https://www.youtube.com/channel/UCuuPJstydCOBP6lMxijeUjQ/join sources https://www.google.com/search?q=murderpedia&rlz=1C1NDCM_enTN777TN777&oq=muderpi&aqs=chrome.1.69i57j0i10l9.9645j0j7&sourceid=chrome&ie=UTF-8 Thanks for watching guys
    https://wn.com/Jurisprudentially_Confused_Execution_Of_Paul_Warner_Powell
    Paul Warner Powell
    1:29

    Paul Warner Powell

    • Order:
    • Duration: 1:29
    • Uploaded Date: 22 May 2020
    • views: 102341
    Paul Warner Powell was a convicted murderer and rapist who was executed by the Commonwealth of Virginia in the state's electric chair.
    https://wn.com/Paul_Warner_Powell
    Murderer punches his attorney after being sentenced to death for brutal rape and killing of girl
    0:47

    Murderer punches his attorney after being sentenced to death for brutal rape and killing of girl

    • Order:
    • Duration: 0:47
    • Uploaded Date: 27 Jun 2023
    • views: 910738
    Joseph Zieler, 61, (main and bottom right) on Monday was sentenced to death in the slayings of 11-year-old Robin Cornell (bottom left) and her babysitter, Lisa Story, 32, (bottom middle) who were raped and suffocated in 1990. Zieler asked for the cameras in the room to be taken down before using an expletive and then elbowing attorney Kevin Shirley in the face. Three bailiffs quickly tackled the man - who appeared to have 'killer' etched on his teeth - to the ground before escorting him out of the courtroom within seconds. Zieler, who was arrested in 2016 - 26 years after the cold case murders - was expected to plead with the judge against the jury's death recommendation. The punch came as Zieler - who was still in handcuffs - appeared to be trying to quietly deliver a message to his long-time counsel. The mother of the 11-year-old girl Zieler murdered, Jan Cornell, was in court Monday and watched the incident play out, expressing shock and surprise. #dailymail #murderer #deathrow Original Article: http://www.dailymail.co.uk/news/article-12235673/Convicted-murderer-punches-attorney-court-hours-judge-slated-announce-sentence.html Original Video: http://www.dailymail.co.uk/video/news/video-2967381/Convicted-murderer-elbows-attorney-face-court.html Daily Mail Homepage: https://www.dailymail.co.uk/ Daily Mail Facebook: https://facebook.com/dailymail Daily Mail IG: https://instagram.com/dailymail Daily Mail Snap: https://www.snapchat.com/discover/Daily-Mail/8392137033 Daily Mail Twitter: https://twitter.com/MailOnline Daily Mail Pinterest: https://pinterest.co.uk/dailymail Get the free Daily Mail mobile app: https://dailymail.co.uk/mobile
    https://wn.com/Murderer_Punches_His_Attorney_After_Being_Sentenced_To_Death_For_Brutal_Rape_And_Killing_Of_Girl
    6 Most RUTHLESS Killers Reactions to DEATH Sentences..
    13:32

    6 Most RUTHLESS Killers Reactions to DEATH Sentences..

    • Order:
    • Duration: 13:32
    • Uploaded Date: 25 May 2023
    • views: 2191320
    Discover the chilling and intense reactions of the most violent criminals as they face the ultimate punishment: death sentences. In this gripping video, we delve into the courtroom proceedings, capturing the raw emotions, explosive outbursts, and shocking revelations that unfold when these notorious individuals receive their verdicts. Witness the dramatic moments as these killers, known for their heinous acts, confront the reality of their impending fate. Explore the justice system's inner workings as judges deliver the final sentences, and observe the riveting reactions that range from remorse to defiance, from desperation to unexpected twists. Join us on this compelling journey as we analyze and discuss these high-profile cases, shedding light on the minds of the most violent criminals. With expert commentary and deep insights, we explore the impact of capital punishment and its complexities within the criminal justice system. Prepare yourself for an unflinching exploration of the human psyche under extreme circumstances. Gain a deeper understanding of the consequences faced by those who have committed the most abhorrent acts, and the effect these sentences have on the victims' families and society as a whole. Subscribe to our channel for more gripping true crime content, as we continue to explore the darkest corners of the criminal world. Stay tuned for future videos that delve into the minds of killers, the complexities of their trials, and the pursuit of justice. Don't miss this riveting video examining the most violent criminals' reactions to death sentences. Hit the like button, share with fellow true crime enthusiasts, and leave your thoughts and insights in the comments section below. timecodes: 0:00 - Intro 0:23 - Markeith Loyd 3:18 - Erica Mae Butts & Shanita Latrice Cunningham 5:25 - Michael Madison 8:19 - Diana Lovejoy 10:39 - Nikko Jenkins #DeathSentence #CourtroomDrama #KillerReactions #ViolentCriminals #CourtroomOutbursts #JusticeSystem #TrueCrime #DeathRow #CrimeAndPunishment #HighProfileTrials #ConvictedKillers #CapitalPunishment #TrialProceedings #SentencingReactions #LegalJustice #InCourt #CriminalJustice #ViolentOffenders #JudicialSystem #DeathPenalty #CriminalTrials #BehindBars #NotoriousKillers #PrisonSentences #Incarceration #HomicideCases #CriminalBehavior #InmateLife #GuiltyVerdict #LifeInPrison #CrimeNews #CriminalMinds #DeathRowInmates #LegalSystem #MurderCases #CourtroomDynamics #GuiltyPleas #JusticeServed #CriminalCourts #CrimeSceneInvestigation #JudicialProcess #ViolentActs #CapitalPunishmentDebate #CourtroomDemeanor #ConvictedFelons #TrueCrimeCommunity #DeathPenaltyDebate #CourtroomReactions #criminaljusticesystem #ViolentCrimes DeathSentence, CourtroomDrama, KillerReactions, ViolentCriminals, CourtroomOutbursts, JusticeSystem, TrueCrime, DeathRow, CrimeAndPunishment, HighProfileTrials, ConvictedKillers, CapitalPunishment, TrialProceedings, SentencingReactions, LegalJustice, InCourt, CriminalJustice, ViolentOffenders, JudicialSystem, DeathPenalty, CriminalTrials, BehindBars, NotoriousKillers, PrisonSentences, Incarceration, HomicideCases, CriminalBehavior, InmateLife, GuiltyVerdict, LifeInPrison, CrimeNews, CriminalMinds, DeathRowInmates, LegalSystem, MurderCases, CourtroomDynamics, GuiltyPleas, JusticeServed, CriminalCourts, CrimeSceneInvestigation, JudicialProcess, ViolentActs, CapitalPunishmentDebate, CourtroomDemeanor, ConvictedFelons, TrueCrimeCommunity, DeathPenaltyDebate, CourtroomReactions, CriminalJusticeSystem, ViolentCrimes
    https://wn.com/6_Most_Ruthless_Killers_Reactions_To_Death_Sentences..
    Judge sentences Daughter to Death..  (emotional)
    8:34

    Judge sentences Daughter to Death.. (emotional)

    • Order:
    • Duration: 8:34
    • Uploaded Date: 23 Aug 2021
    • views: 13110716
    Judge sentences Daughter to Death.. (emotional) Judge Destroys Convict Caught Pretending to be Crazy.. https://www.youtube.com/watch?v=tiars9dgCV8&t=6s What pretending to be crazy looks like - JCS - Criminal Psychology https://www.youtube.com/watch?v=Mwt35SEeR9w 10 GUILTY TEENAGE Convicts REACTING to LIFE SENTENCES https://www.youtube.com/watch?v=hDZ7YAt_pPY Killer Laughs at Dad Crying for Daughter, He Snaps.. https://www.youtube.com/watch?v=pA8LctjF-I8 Little Girl Chooses Heaven over Hospital.. (emotional) https://www.youtube.com/watch?v=J_sSuIQ-Nv4 Little Girl Goes To Heaven While Her Parents Watching (emotional) https://www.youtube.com/watch?v=xdCubR6lRYw Teen caught smiling during sentencing in of Ann Arbor student https://www.youtube.com/watch?v=DH5lJXkQOzA Dad Jumps Over Table To Attack Daughter's Killer in Court https://www.youtube.com/watch?v=BCepHPClnXE Court Cam: Top 5 Most Disrespectful Defendants | A&E https://www.youtube.com/watch?v=PIotJjzDyHM Court Cam: Russian Man Tries to Escape from Court (Season 2) | A&E https://www.youtube.com/watch?v=0viKv1RDhak Court Cam: Judge Recognizes Friend from Middle School (Season 2) | A&E https://www.youtube.com/watch?v=-VRx0GRo-Ws
    https://wn.com/Judge_Sentences_Daughter_To_Death.._(Emotional)
    The Most Incredible Moments In Court
    22:36

    The Most Incredible Moments In Court

    • Order:
    • Duration: 22:36
    • Uploaded Date: 03 Dec 2022
    • views: 4221050
    For copyright matters, please contact: bosstech148@gmail.com Welcome to Topdiscovery! Here, you'll find all the most interesting and mind-blowing discoveries we've come across. Our videos are packed with fun and engaging content that will leave you saying, "Wow, I didn't know that!" From the strange and bizarre to the latest scientific breakthroughs, we've got it all. So why not join us on this wild ride of discovery and see for yourself just how fascinating the world can be? Subscribe now and let the fun begin! Disclaimer: The content presented in our videos is intended solely for entertainment purposes. While we may draw upon facts, rumors, and fiction, viewers should not interpret any part of the content as factual or definitive information. Please enjoy responsibly.
    https://wn.com/The_Most_Incredible_Moments_In_Court
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Killer Who Wrote a Letter (PAUL WARNER POWELL)
      11:41
      The Killer Who Wrote a Letter (PAUL WARNER POWELL)remove from playlist
    • Paul Warner Powell: The ‘Stupid’ Mistake That Landed Him on Death Row Twice-Remembering Stacie Reed
      24:56
      Paul Warner Powell: The ‘Stupid’ Mistake That Landed Him on Death Row Twice-Remembering Stacie Reedremove from playlist
    • The Bizarre Case of Paul Warner Powell: The Man Who Sent Himself to the Electric Chair
      48:42
      The Bizarre Case of Paul Warner Powell: The Man Who Sent Himself to the Electric Chairremove from playlist
    • HE KILLED THEN BRAGGED - Paul Warner Powell - The murder of Stacie Reed | True Crime with Emma Kenny
      1:09:50
      HE KILLED THEN BRAGGED - Paul Warner Powell - The murder of Stacie Reed | True Crime with Emma Kennyremove from playlist
    • JURISPRUDENTIALLY CONFUSED - EXECUTION OF Paul Warner Powell
      11:07
      JURISPRUDENTIALLY CONFUSED - EXECUTION OF Paul Warner Powellremove from playlist
    • Paul Warner Powell
      1:29
      Paul Warner Powellremove from playlist
    • Murderer punches his attorney after being sentenced to death for brutal rape and killing of girl
      0:47
      Murderer punches his attorney after being sentenced to death for brutal rape and killing of girlremove from playlist
    • 6 Most RUTHLESS Killers Reactions to DEATH Sentences..
      13:32
      6 Most RUTHLESS Killers Reactions to DEATH Sentences..remove from playlist
    • Judge sentences Daughter to Death..  (emotional)
      8:34
      Judge sentences Daughter to Death.. (emotional)remove from playlist
    • The Most Incredible Moments In Court
      22:36
      The Most Incredible Moments In Courtremove from playlist
    PLAYLIST TIME: 0:00 / 3:33:14

    The Killer Who Wrote a Letter (PAUL WARNER POWELL)

    In today's true-crime documentary, we're covering the disturbing case of Stacie Reed's murder case. This true story shows, on January 1999. One year before Y2K, the last year of the second millennium, brought with it positive innovations like Limewire — the first internet file sharing site — and the launch of the Mars Polar Lander. It was also a year marred by violence. From the murder of James Byrd Jr. by a white supremacist in Texas, to the Columbine High School Massacre, the final year of the second millennium was as bloody as it was hopeful. And at the start was the case of Paul Warner Powell. Join us for a storytime covering Stacie Reed's case. If you like to watch more solved cases and murder mysteries, subscribe: https://www.youtube.com/channel/UC-AlnKKt2iERlIdGwIiUPDw?sub_confirmation=1 Watch more true crime stories here: https://www.youtube.com/playlist?list=PLl74W9q8g_w49ji7U9ueIU-gSS9V2es0N This channel is inspired by the great work of "Anna Solves", "That Chapter" & "Explore with Us". You guys rock! #paulwarnerpowell #truecrimedocumentaries #truecrimestories
    11:41
    The Killer Who Wrote a Letter (PAUL WARNER POWELL)
    In today's true-crime documentary, we're covering the disturbing case of Stacie Reed's mur...
    published: 13 Jan 2022
    Play in Full Screen
    24:56
    Paul Warner Powell: The ‘Stupid’ Mistake That Landed Him on Death Row Twice-Remembering Stacie Reed
    This video delves into the chilling story of Paul Warren Powell, a man who once walked amo...
    published: 25 Dec 2023
    Play in Full Screen
    48:42
    The Bizarre Case of Paul Warner Powell: The Man Who Sent Himself to the Electric Chair
    Start building your ideal daily routine! The first 100 people who click on the link will g...
    published: 30 Jan 2023
    Play in Full Screen
    1:09:50
    HE KILLED THEN BRAGGED - Paul Warner Powell - The murder of Stacie Reed | True Crime with Emma Kenny
    Stacie Reed was friends with a young man called Paul Warner Powell. Let’s just say that Po...
    published: 08 May 2022
    Play in Full Screen
    11:07
    JURISPRUDENTIALLY CONFUSED - EXECUTION OF Paul Warner Powell
    hello everyone this video is on Paul Warner Powell DISCLAIMER ....... Death Row is a Cha...
    published: 13 Jan 2022
    Play in Full Screen
    1:29
    Paul Warner Powell
    Paul Warner Powell was a convicted murderer and rapist who was executed by the Commonweal...
    published: 22 May 2020
    Play in Full Screen
    0:47
    Murderer punches his attorney after being sentenced to death for brutal rape and killing of girl
    Joseph Zieler, 61, (main and bottom right) on Monday was sentenced to death in the slaying...
    published: 27 Jun 2023
    Play in Full Screen
    13:32
    6 Most RUTHLESS Killers Reactions to DEATH Sentences..
    Discover the chilling and intense reactions of the most violent criminals as they face the...
    published: 25 May 2023
    Play in Full Screen
    8:34
    Judge sentences Daughter to Death.. (emotional)
    Judge sentences Daughter to Death.. (emotional) Judge Destroys Convict Caught Pretending...
    published: 23 Aug 2021
    Play in Full Screen
    22:36
    The Most Incredible Moments In Court
    For copyright matters, please contact: bosstech148@gmail.com Welcome to Topdiscovery! Her...
    published: 03 Dec 2022
    Play in Full Screen

    Paul Powell (director)

    Paul Mahlon Powell (September 6, 1881 July 2, 1944) was an American journalist, director, producer, screenwriter and actor. Powell was most active during the silent film era and is best known for directing Mary Pickford in Pollyanna (1920).

    Career

    Born in Peoria, Illinois, Powell was one of six children of Charles Henry and Anna Clara Powell (née von Schoenheider). His father was a publisher who founded the Peoria Evening Star. Powell was educated in Peoria and later attended Bradley Polytechnic Institute. After graduation, he worked at his father's newspaper as a typesetter and editor before becoming a reporter.

    In the early 1900s, Powell worked as a reporter for the Chicago Tribune and the Los Angeles Express. In 1910, he quit his job as a reporter to work in the film industry. The following year, he became the assistant of director and screenwriter Wilbert Melville. In 1914, D. W. Griffith hired Powell to be the director of Mutual Film Corporation films. Two years later, Griffith hired Powell to direct features for Triangle-Fine Arts Film Corporation. While working for Triangle-Fine Arts, Powell directed Mary Pickford in the film adaptation of the 1913 novel Pollyanna. The film was a tremendous success and grossed $1.1 million upon its release. Powell also supported a young Rudolph Valentino while working on films such as A Society Sensation and All Night, who later recalled "He was the first to say, 'Stick to it and you'll make a name for yourself.'" Valentino later became one of the silent era's most cherished stars.

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