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

Soldier Boy (song)

"Soldier Boy" is a song written by Luther Dixon and Florence Greenberg. The song was released as a single by The Shirelles in 1962 and met with great success, topping the US Billboard Hot 100. The song's lyrics are a profession of the singer's love for the titular soldier boy in which she promises to remain true to him while he's away.

In popular culture

  • The recording was used in the film The Wanderers (1979).
  • The recording was used in the film Born on the Fourth of July (1989).
  • Charts

    Cover versions

    "Soldier Boy" was covered by American country music artist Donna Fargo in 1991. Her version peaked at number 71 on the Billboard Hot Country Singles & Tracks chart.

    It was covered by Diane Renay in 1964.

    References

    Soldier Boy

    Soldier Boy and similar may refer to:

  • "Soldier Boy" (song), a 1962 number-one single by The Shirelles
  • Soldier Boy (short story), a science fiction short story
  • Soldier Boy (film), the shortest classified film ever made
  • Soldier Boy (operetta), the English title of an operetta by Emmerich Kálmán
  • Soulja Boy, an American rapper
  • George Curry, American baseball player who went by the nickname "Soldier Boy"
  • Soldier Boy (short story)

    "Soldier Boy" (also known as "X Minus One #71: 56-10-17 Soldier Boy") is a 1953 science fiction short story by American author Michael Shaara, about a soldier boy who saves the planet from aliens. It was originally published in the July 1953 issue of Galaxy Science Fiction. It is also the title of a 1982 collection of Shaara's short stories.

    References

  • Shaara, Michael (February 1982). Soldier Boy (1st ed.). Simon & Schuster. ISBN 978-0-671-83342-8. 
  • External links

  • Soldier Boy title listing at the Internet Speculative Fiction Database
  • "Soldier Boy" at the Internet Archive

  • Soldier Boy (film)

    Soldier Boy is a 2004 film made in the USA and directed by Les Sholes of the US. It is notable because, according to the 2007 edition of Guinness World Records, it is the shortest classified film in history, with a running time of only 7 seconds. The story concerns a couple, who were separated during World War II. It was released on 18 March 2005 at the Empire Arts Center, located in Grand Forks, North Dakota, USA.

    Soldier Boy was given a certificate G.

    References

  • Guinness World Records 2007. Guinness World Records Ltd. 2006. 
  • See also

  • List of independent short films

  • Podcasts:

    • Best of Soldier Boy | The Boys | Prime Video

      Stream The Boys now, only on Prime Video. » Watch The Boys on Prime Video: https://amzn.to/2SQdfsv » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About The Boys: THE BOYS is an irreverent take on what happens when superheroes, who are as popular as celebrities, as influential as politicians and as revered as Gods, abuse their superpowers rather than use them for good. It's the powerless against the super powerful as The Boys embark on a heroic quest to expose the truth about “The Seven,” and their formidable Vought backing. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Over 150,000 movies and TV episodes, incl...

      published: 02 Oct 2022
    • Soldier Boy - Full Movie

      This feature film is based on the true story of a six-year-old boy, Russia's youngest hero of World War II. Seryozha Aleshkov lost his family, was rescued by an army regiment, and engaged in battles. The little soldier was awarded the Military Merit Medal. Tragedy and love, danger and hope, the bitterness of separation and the joy of belonging, are all intertwined in this wartime drama. #FULLMOVIE #FEATUREFILM #FREEMOVIES #MOVIES #ACTIONMOVIES #ACTION #MOVIES More ways to stream: Amazon Prime: https://pixelfy.me/SoldierBoyAMAZON The Roku Channel: https://pixelfy.me/SoldierBoyROKU Tubi TV: https://pixelfy.me/SoldierBoyTUBI

      published: 29 Jul 2021
    • Soulja Boy Tell'em - Crank That (Soulja Boy) (Official Music Video)

      REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https://goo.gl/k2s6xJ Music video by Soulja Boy Tell`em performing Crank That (Soulja Boy). (C) 2007 ColliPark Music/HHH/Interscope Records #SoulaBoyTellEm #CrankThat #Remastered

      published: 22 Nov 2009
    • Soldier Boy | Guest Appearance on Solid Gold

      Soldier Boy serenades the Solid Gold dancers with a super rendition of Blondie's "Rapture" in this classic clip recorded just before his heroic final mission. Shortly after this, he was posthumously awarded a Vrammy for Best Special Guest Performance! About Vought International: Today's heroes. Tomorrow's future. Soldier Boy | Guest Appearance on Solid Gold https://youtu.be/li2WDMgHxD0 Vought International: https://bit.ly/VoughtYT » Watch The Boys now on Prime Video: http://bit.ly/PrimeVideoTheBoys » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe » Vought: https://bit.ly/VoughtInternational Follow @TheBoysTV on Twitter, Facebook and Instagram. “The Boys” Seasons 1 and 2 are now streaming on Prime Video. #VoughtInternational #SoldierBoy #Rapture #SolidGold

      published: 10 Jun 2022
    • soldier boy moments for 4 minute straight

      This is soldier boy being sigma for 4 minutes straight avoiding any major spoilers Related content in this video .Grace Mallory meets Soldier boy .Soldier boy awakens .Soldier boy agrees to take on Homelander .Soldier boy meets Homelander .Soldier boy kills Mindstorm .Soldier boy final fight scene #theboys #homelander #billybutcher #soldierboy #sigmarule #sigma #alphamale #alpha @cyc1oonedits Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.

      published: 02 Oct 2022
    • Homelander vs. Butcher and Soldier Boy | The Boys | Prime Video

      Stream The Boys now, only on Prime Video. » Watch The Boys on Prime Video: https://amzn.to/2SQdfsv » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About The Boys: THE BOYS is an irreverent take on what happens when superheroes, who are as popular as celebrities, as influential as politicians and as revered as Gods, abuse their superpowers rather than use them for good. It's the powerless against the super powerful as The Boys embark on a heroic quest to expose the truth about “The Seven,” and their formidable Vought backing. About The Boys Season 3: It's been a year of calm. Homelander's subdued. Butcher works for the government, supervised by Hughie of all people. But both men itch to turn this peace and quiet into blood and bone. So when The Boys learn of a mysterious Anti-Supe weapon...

      published: 23 Jul 2022
    • SOLDIER BOY - 'From a Logical Point of View' (With Lyrics)

      Soldier Boy's hit single from the 60's. Remastered in HD.

      published: 03 Jul 2022
    • Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys

      Soldier Boy tells Billy about his complicated relationship with his dad, and how he always hoped he could do better for his kids. Watch The Boys on Prime Video. » SUBSCRIBE: http://www.youtube.com/channel/UCwSIJCMWZC5GDM59wj7pMsg?sub_confirmation=1 Get More Prime Video: Watch More: http://bit.ly/WatchPrimeVideoUKNow Facebook: http://bit.ly/PrimeVideoUKFacebook Twitter: http://bit.ly/PrimeVideoUKTwitter Instagram: http://bit.ly/PrimeVideoUKInstagram Prime Video has thousands of popular movies and TV shows, including award-winning Amazon Originals, plus live sport and more. All included with Prime! #TheBoys #BillyButcher #SoldierBoy

      published: 11 Jul 2022
    developed with YouTube
    Best of Soldier Boy | The Boys | Prime Video
    8:08

    Best of Soldier Boy | The Boys | Prime Video

    • Order:
    • Duration: 8:08
    • Uploaded Date: 02 Oct 2022
    • views: 1304781
    Stream The Boys now, only on Prime Video. » Watch The Boys on Prime Video: https://amzn.to/2SQdfsv » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About The Boys: THE BOYS is an irreverent take on what happens when superheroes, who are as popular as celebrities, as influential as politicians and as revered as Gods, abuse their superpowers rather than use them for good. It's the powerless against the super powerful as The Boys embark on a heroic quest to expose the truth about “The Seven,” and their formidable Vought backing. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Over 150,000 movies and TV episodes, including thousands for Amazon Prime members at no additional cost. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB Twitter: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/primevideoIG Best of Soldier Boy | The Boys | Prime Video https://youtu.be/4zj4ACPGpUA Prime Video https://www.youtube.com/PrimeVideo #PrimeVideo #TheBoys #SoldierBoy
    https://wn.com/Best_Of_Soldier_Boy_|_The_Boys_|_Prime_Video
    Soldier Boy - Full Movie
    1:26:29

    Soldier Boy - Full Movie

    • Order:
    • Duration: 1:26:29
    • Uploaded Date: 29 Jul 2021
    • views: 34282394
    This feature film is based on the true story of a six-year-old boy, Russia's youngest hero of World War II. Seryozha Aleshkov lost his family, was rescued by an army regiment, and engaged in battles. The little soldier was awarded the Military Merit Medal. Tragedy and love, danger and hope, the bitterness of separation and the joy of belonging, are all intertwined in this wartime drama. #FULLMOVIE #FEATUREFILM #FREEMOVIES #MOVIES #ACTIONMOVIES #ACTION #MOVIES More ways to stream: Amazon Prime: https://pixelfy.me/SoldierBoyAMAZON The Roku Channel: https://pixelfy.me/SoldierBoyROKU Tubi TV: https://pixelfy.me/SoldierBoyTUBI
    https://wn.com/Soldier_Boy_Full_Movie
    Soulja Boy Tell'em - Crank That (Soulja Boy) (Official Music Video)
    3:58

    Soulja Boy Tell'em - Crank That (Soulja Boy) (Official Music Video)

    • Order:
    • Duration: 3:58
    • Uploaded Date: 22 Nov 2009
    • views: 594948152
    REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https://goo.gl/k2s6xJ Music video by Soulja Boy Tell`em performing Crank That (Soulja Boy). (C) 2007 ColliPark Music/HHH/Interscope Records #SoulaBoyTellEm #CrankThat #Remastered
    https://wn.com/Soulja_Boy_Tell'em_Crank_That_(Soulja_Boy)_(Official_Music_Video)
    Soldier Boy | Guest Appearance on Solid Gold
    1:37

    Soldier Boy | Guest Appearance on Solid Gold

    • Order:
    • Duration: 1:37
    • Uploaded Date: 10 Jun 2022
    • views: 17045176
    Soldier Boy serenades the Solid Gold dancers with a super rendition of Blondie's "Rapture" in this classic clip recorded just before his heroic final mission. Shortly after this, he was posthumously awarded a Vrammy for Best Special Guest Performance! About Vought International: Today's heroes. Tomorrow's future. Soldier Boy | Guest Appearance on Solid Gold https://youtu.be/li2WDMgHxD0 Vought International: https://bit.ly/VoughtYT » Watch The Boys now on Prime Video: http://bit.ly/PrimeVideoTheBoys » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe » Vought: https://bit.ly/VoughtInternational Follow @TheBoysTV on Twitter, Facebook and Instagram. “The Boys” Seasons 1 and 2 are now streaming on Prime Video. #VoughtInternational #SoldierBoy #Rapture #SolidGold
    https://wn.com/Soldier_Boy_|_Guest_Appearance_On_Solid_Gold
    soldier boy moments for 4 minute straight
    4:11

    soldier boy moments for 4 minute straight

    • Order:
    • Duration: 4:11
    • Uploaded Date: 02 Oct 2022
    • views: 1520786
    This is soldier boy being sigma for 4 minutes straight avoiding any major spoilers Related content in this video .Grace Mallory meets Soldier boy .Soldier boy awakens .Soldier boy agrees to take on Homelander .Soldier boy meets Homelander .Soldier boy kills Mindstorm .Soldier boy final fight scene #theboys #homelander #billybutcher #soldierboy #sigmarule #sigma #alphamale #alpha @cyc1oonedits Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
    https://wn.com/Soldier_Boy_Moments_For_4_Minute_Straight
    Homelander vs. Butcher and Soldier Boy | The Boys | Prime Video
    4:17

    Homelander vs. Butcher and Soldier Boy | The Boys | Prime Video

    • Order:
    • Duration: 4:17
    • Uploaded Date: 23 Jul 2022
    • views: 22255208
    Stream The Boys now, only on Prime Video. » Watch The Boys on Prime Video: https://amzn.to/2SQdfsv » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About The Boys: THE BOYS is an irreverent take on what happens when superheroes, who are as popular as celebrities, as influential as politicians and as revered as Gods, abuse their superpowers rather than use them for good. It's the powerless against the super powerful as The Boys embark on a heroic quest to expose the truth about “The Seven,” and their formidable Vought backing. About The Boys Season 3: It's been a year of calm. Homelander's subdued. Butcher works for the government, supervised by Hughie of all people. But both men itch to turn this peace and quiet into blood and bone. So when The Boys learn of a mysterious Anti-Supe weapon, it sends them crashing into the Seven, starting a war, and chasing the legend of the first Superhero: Soldier Bo About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Over 150,000 movies and TV episodes, including thousands for Amazon Prime members at no additional cost. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB Twitter: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/primevideoIG Homelander vs. Butcher and Soldier Boy | The Boys | Prime Video https://youtu.be/Rsjo7NQW0-E Prime Video https://www.youtube.com/PrimeVideo #TheBoys #PrimeVideo
    https://wn.com/Homelander_Vs._Butcher_And_Soldier_Boy_|_The_Boys_|_Prime_Video
    SOLDIER BOY - 'From a Logical Point of View' (With Lyrics)
    3:06

    SOLDIER BOY - 'From a Logical Point of View' (With Lyrics)

    • Order:
    • Duration: 3:06
    • Uploaded Date: 03 Jul 2022
    • views: 817465
    Soldier Boy's hit single from the 60's. Remastered in HD.
    https://wn.com/Soldier_Boy_'From_A_Logical_Point_Of_View'_(With_Lyrics)
    Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys
    3:17

    Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys

    • Order:
    • Duration: 3:17
    • Uploaded Date: 11 Jul 2022
    • views: 2374502
    Soldier Boy tells Billy about his complicated relationship with his dad, and how he always hoped he could do better for his kids. Watch The Boys on Prime Video. » SUBSCRIBE: http://www.youtube.com/channel/UCwSIJCMWZC5GDM59wj7pMsg?sub_confirmation=1 Get More Prime Video: Watch More: http://bit.ly/WatchPrimeVideoUKNow Facebook: http://bit.ly/PrimeVideoUKFacebook Twitter: http://bit.ly/PrimeVideoUKTwitter Instagram: http://bit.ly/PrimeVideoUKInstagram Prime Video has thousands of popular movies and TV shows, including award-winning Amazon Originals, plus live sport and more. All included with Prime! #TheBoys #BillyButcher #SoldierBoy
    https://wn.com/Soldier_Boy_Butcher_Bond_Over_Their_Terrible_Childhoods_|_The_Boys
    • Soldier Boy - Full Movie

      This feature film is based on the true story of a six-year-old boy, Russia's youngest hero of World War II. Seryozha Aleshkov lost his family, was rescued by an army regiment, and engaged in battles. The little soldier was awarded the Military Merit Medal. Tragedy and love, danger and hope, the bitterness of separation and the joy of belonging, are all intertwined in this wartime drama. #FULLMOVIE #FEATUREFILM #FREEMOVIES #MOVIES #ACTIONMOVIES #ACTION #MOVIES More ways to stream: Amazon Prime: https://pixelfy.me/SoldierBoyAMAZON The Roku Channel: https://pixelfy.me/SoldierBoyROKU Tubi TV: https://pixelfy.me/SoldierBoyTUBI

      published: 29 Jul 2021
    • Soldier Boy's Lecture [4K] | The Boys #Shorts

      Soldier Boy's Lecture [4K] | The Boys #Shorts

      published: 20 Mar 2023
    • Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys

      Soldier Boy tells Billy about his complicated relationship with his dad, and how he always hoped he could do better for his kids. Watch The Boys on Prime Video. » SUBSCRIBE: http://www.youtube.com/channel/UCwSIJCMWZC5GDM59wj7pMsg?sub_confirmation=1 Get More Prime Video: Watch More: http://bit.ly/WatchPrimeVideoUKNow Facebook: http://bit.ly/PrimeVideoUKFacebook Twitter: http://bit.ly/PrimeVideoUKTwitter Instagram: http://bit.ly/PrimeVideoUKInstagram Prime Video has thousands of popular movies and TV shows, including award-winning Amazon Originals, plus live sport and more. All included with Prime! #TheBoys #BillyButcher #SoldierBoy

      published: 11 Jul 2022
    • SOLDIER BOY

      Johnny leaves Alice behind when he gets drafted into World War II.

      published: 06 May 2013
    • Soldier Boy Tells Homelander The Truth | The Boys #shorts

      Show: The Boys Song: In Essence - Kastro Edit By: @snr_cinema In this video, Homelander gets a call from Soldier Boy. Homelander is angry about what happened but then Soldier Boy tells him something unexpected... He is Homelander's father. #theboys #homelander #soldierboy #butcher #edit #fyp #viral #theboysedit

      published: 20 May 2023
    • Real Story!! Six-Year-Old Boy Fought In Battles, Becoming The Youngest Soldier Of World War 2

      During World War II, six-year-old Sergei Aleshkov loses all his relatives and joins the army. MOVIE NAME= S0LD1ER B0Y Get your own Text To Speech Software Here: https://bit.ly/MysteryRecappedTTS _________________________________ Subscribe to our other social media accounts for daily updates, movie recommendations and more 1. Twitter = https://twitter.com/MysteryRecapped?t=wDET5JG0vrZy-nHpynDuAA&s=09 2. Instagram = https://www.instagram.com/mysteryrecapped/ 3. Tiktok = https://vt.tiktok.com/ZSemvw9y4/ 4. Adam's YT= https://www.youtube.com/channel/UCwvlZqkEmAeZJLQuKTtEwjg/videos

      published: 29 Aug 2021
    • Soldier Boy is OP | Metamorphosis #shorts #theboys

      published: 31 Oct 2022
    • SOLDIER BOY - ''You're a f**kin disappointment.''

      Subscribe For More And Your Ideas Are Welcomed!! HEADPHONES RECOMMENDED Series - The Boys Music - Ezio's family - Assassin's Creed II #theboys #homelander #antonystarr #theboysamazon #theboysseason3 #short #starlight #standedgar #giancarloesposito #gusfring #soldierboy #jensenackles #vought

      published: 09 Jul 2022
    • Soldier Boy - (Official Trailer)

      This feature film is based on the true story of a six-year-old boy, Russia's youngest hero of World War II. Seryozha Aleshkov lost his family, was rescued by an army regiment, and engaged in battles. The little soldier was awarded the Military Merit Medal. Tragedy and love, danger and hope, the bitterness of separation and the joy of belonging, are all intertwined in this wartime drama. #TRAILER #FEATUREFILM More ways to stream: https://pixelfy.me/eCt37t

      published: 02 Feb 2021
    • Soldier Boy finds out about Black Noir | The Boys #soldierboy #theboys #homelander #shorts

      published: 26 Jul 2023
    developed with YouTube
    Soldier Boy - Full Movie
    1:26:29

    Soldier Boy - Full Movie

    • Order:
    • Duration: 1:26:29
    • Uploaded Date: 29 Jul 2021
    • views: 34282394
    This feature film is based on the true story of a six-year-old boy, Russia's youngest hero of World War II. Seryozha Aleshkov lost his family, was rescued by an army regiment, and engaged in battles. The little soldier was awarded the Military Merit Medal. Tragedy and love, danger and hope, the bitterness of separation and the joy of belonging, are all intertwined in this wartime drama. #FULLMOVIE #FEATUREFILM #FREEMOVIES #MOVIES #ACTIONMOVIES #ACTION #MOVIES More ways to stream: Amazon Prime: https://pixelfy.me/SoldierBoyAMAZON The Roku Channel: https://pixelfy.me/SoldierBoyROKU Tubi TV: https://pixelfy.me/SoldierBoyTUBI
    https://wn.com/Soldier_Boy_Full_Movie
    Soldier Boy's Lecture [4K] | The Boys #Shorts
    0:56

    Soldier Boy's Lecture [4K] | The Boys #Shorts

    • Order:
    • Duration: 0:56
    • Uploaded Date: 20 Mar 2023
    • views: 1786956
    Soldier Boy's Lecture [4K] | The Boys #Shorts
    https://wn.com/Soldier_Boy's_Lecture_4K_|_The_Boys_Shorts
    Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys
    3:17

    Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys

    • Order:
    • Duration: 3:17
    • Uploaded Date: 11 Jul 2022
    • views: 2374502
    Soldier Boy tells Billy about his complicated relationship with his dad, and how he always hoped he could do better for his kids. Watch The Boys on Prime Video. » SUBSCRIBE: http://www.youtube.com/channel/UCwSIJCMWZC5GDM59wj7pMsg?sub_confirmation=1 Get More Prime Video: Watch More: http://bit.ly/WatchPrimeVideoUKNow Facebook: http://bit.ly/PrimeVideoUKFacebook Twitter: http://bit.ly/PrimeVideoUKTwitter Instagram: http://bit.ly/PrimeVideoUKInstagram Prime Video has thousands of popular movies and TV shows, including award-winning Amazon Originals, plus live sport and more. All included with Prime! #TheBoys #BillyButcher #SoldierBoy
    https://wn.com/Soldier_Boy_Butcher_Bond_Over_Their_Terrible_Childhoods_|_The_Boys
    SOLDIER BOY
    0:32

    SOLDIER BOY

    • Order:
    • Duration: 0:32
    • Uploaded Date: 06 May 2013
    • views: 20446
    Johnny leaves Alice behind when he gets drafted into World War II.
    https://wn.com/Soldier_Boy
    Soldier Boy Tells Homelander The Truth | The Boys #shorts
    0:59

    Soldier Boy Tells Homelander The Truth | The Boys #shorts

    • Order:
    • Duration: 0:59
    • Uploaded Date: 20 May 2023
    • views: 6610980
    Show: The Boys Song: In Essence - Kastro Edit By: @snr_cinema In this video, Homelander gets a call from Soldier Boy. Homelander is angry about what happened but then Soldier Boy tells him something unexpected... He is Homelander's father. #theboys #homelander #soldierboy #butcher #edit #fyp #viral #theboysedit
    https://wn.com/Soldier_Boy_Tells_Homelander_The_Truth_|_The_Boys_Shorts
    Real Story!! Six-Year-Old Boy Fought In Battles, Becoming The Youngest Soldier Of World War 2
    8:55

    Real Story!! Six-Year-Old Boy Fought In Battles, Becoming The Youngest Soldier Of World War 2

    • Order:
    • Duration: 8:55
    • Uploaded Date: 29 Aug 2021
    • views: 19522840
    During World War II, six-year-old Sergei Aleshkov loses all his relatives and joins the army. MOVIE NAME= S0LD1ER B0Y Get your own Text To Speech Software Here: https://bit.ly/MysteryRecappedTTS _________________________________ Subscribe to our other social media accounts for daily updates, movie recommendations and more 1. Twitter = https://twitter.com/MysteryRecapped?t=wDET5JG0vrZy-nHpynDuAA&s=09 2. Instagram = https://www.instagram.com/mysteryrecapped/ 3. Tiktok = https://vt.tiktok.com/ZSemvw9y4/ 4. Adam's YT= https://www.youtube.com/channel/UCwvlZqkEmAeZJLQuKTtEwjg/videos
    https://wn.com/Real_Story_Six_Year_Old_Boy_Fought_In_Battles,_Becoming_The_Youngest_Soldier_Of_World_War_2
    Soldier Boy is OP | Metamorphosis #shorts #theboys
    0:33

    Soldier Boy is OP | Metamorphosis #shorts #theboys

    • Order:
    • Duration: 0:33
    • Uploaded Date: 31 Oct 2022
    • views: 839506
    https://wn.com/Soldier_Boy_Is_Op_|_Metamorphosis_Shorts_Theboys
    SOLDIER BOY - ''You're a f**kin disappointment.''
    1:00

    SOLDIER BOY - ''You're a f**kin disappointment.''

    • Order:
    • Duration: 1:00
    • Uploaded Date: 09 Jul 2022
    • views: 27240525
    Subscribe For More And Your Ideas Are Welcomed!! HEADPHONES RECOMMENDED Series - The Boys Music - Ezio's family - Assassin's Creed II #theboys #homelander #antonystarr #theboysamazon #theboysseason3 #short #starlight #standedgar #giancarloesposito #gusfring #soldierboy #jensenackles #vought
    https://wn.com/Soldier_Boy_''You're_A_F_Kin_Disappointment.''
    Soldier Boy - (Official Trailer)
    1:15

    Soldier Boy - (Official Trailer)

    • Order:
    • Duration: 1:15
    • Uploaded Date: 02 Feb 2021
    • views: 266961
    This feature film is based on the true story of a six-year-old boy, Russia's youngest hero of World War II. Seryozha Aleshkov lost his family, was rescued by an army regiment, and engaged in battles. The little soldier was awarded the Military Merit Medal. Tragedy and love, danger and hope, the bitterness of separation and the joy of belonging, are all intertwined in this wartime drama. #TRAILER #FEATUREFILM More ways to stream: https://pixelfy.me/eCt37t
    https://wn.com/Soldier_Boy_(Official_Trailer)
    Soldier Boy finds out about Black Noir | The Boys #soldierboy #theboys #homelander #shorts
    0:32

    Soldier Boy finds out about Black Noir | The Boys #soldierboy #theboys #homelander #shorts

    • Order:
    • Duration: 0:32
    • Uploaded Date: 26 Jul 2023
    • views: 2552677
    https://wn.com/Soldier_Boy_Finds_Out_About_Black_Noir_|_The_Boys_Soldierboy_Theboys_Homelander_Shorts
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Best of Soldier Boy | The Boys | Prime Video
      8:08
      Best of Soldier Boy | The Boys | Prime Videoremove from playlist
    • Soldier Boy - Full Movie
      1:26:29
      Soldier Boy - Full Movieremove from playlist
    • Soulja Boy Tell'em - Crank That (Soulja Boy) (Official Music Video)
      3:58
      Soulja Boy Tell'em - Crank That (Soulja Boy) (Official Music Video)remove from playlist
    • Soldier Boy | Guest Appearance on Solid Gold
      1:37
      Soldier Boy | Guest Appearance on Solid Goldremove from playlist
    • soldier boy moments for 4 minute straight
      4:11
      soldier boy moments for 4 minute straightremove from playlist
    • Homelander vs. Butcher and Soldier Boy | The Boys | Prime Video
      4:17
      Homelander vs. Butcher and Soldier Boy | The Boys | Prime Videoremove from playlist
    • Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys
      3:17
      Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boysremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Best of Soldier Boy | The Boys | Prime Video

    Stream The Boys now, only on Prime Video. » Watch The Boys on Prime Video: https://amzn.to/2SQdfsv » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About The Boys: THE BOYS is an irreverent take on what happens when superheroes, who are as popular as celebrities, as influential as politicians and as revered as Gods, abuse their superpowers rather than use them for good. It's the powerless against the super powerful as The Boys embark on a heroic quest to expose the truth about “The Seven,” and their formidable Vought backing. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Over 150,000 movies and TV episodes, including thousands for Amazon Prime members at no additional cost. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB Twitter: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/primevideoIG Best of Soldier Boy | The Boys | Prime Video https://youtu.be/4zj4ACPGpUA Prime Video https://www.youtube.com/PrimeVideo #PrimeVideo #TheBoys #SoldierBoy
    8:08
    Best of Soldier Boy | The Boys | Prime Video
    Stream The Boys now, only on Prime Video. » Watch The Boys on Prime Video: https://amzn...
    published: 02 Oct 2022
    Play in Full Screen
    1:26:29
    Soldier Boy - Full Movie
    This feature film is based on the true story of a six-year-old boy, Russia's youngest hero...
    published: 29 Jul 2021
    Play in Full Screen
    3:58
    Soulja Boy Tell'em - Crank That (Soulja Boy) (Official Music Video)
    REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https:...
    published: 22 Nov 2009
    Play in Full Screen
    1:37
    Soldier Boy | Guest Appearance on Solid Gold
    Soldier Boy serenades the Solid Gold dancers with a super rendition of Blondie's "Rapture"...
    published: 10 Jun 2022
    Play in Full Screen
    4:11
    soldier boy moments for 4 minute straight
    This is soldier boy being sigma for 4 minutes straight avoiding any major spoilers Relate...
    published: 02 Oct 2022
    Play in Full Screen
    4:17
    Homelander vs. Butcher and Soldier Boy | The Boys | Prime Video
    Stream The Boys now, only on Prime Video. » Watch The Boys on Prime Video: https://amzn....
    published: 23 Jul 2022
    Play in Full Screen
    3:06
    SOLDIER BOY - 'From a Logical Point of View' (With Lyrics)
    Soldier Boy's hit single from the 60's. Remastered in HD.
    published: 03 Jul 2022
    Play in Full Screen
    3:17
    Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys
    Soldier Boy tells Billy about his complicated relationship with his dad, and how he always...
    published: 11 Jul 2022
    Play in Full Screen

    Soldier Boy (song)

    "Soldier Boy" is a song written by Luther Dixon and Florence Greenberg. The song was released as a single by The Shirelles in 1962 and met with great success, topping the US Billboard Hot 100. The song's lyrics are a profession of the singer's love for the titular soldier boy in which she promises to remain true to him while he's away.

    In popular culture

  • The recording was used in the film The Wanderers (1979).
  • The recording was used in the film Born on the Fourth of July (1989).
  • Charts

    Cover versions

    "Soldier Boy" was covered by American country music artist Donna Fargo in 1991. Her version peaked at number 71 on the Billboard Hot Country Singles & Tracks chart.

    It was covered by Diane Renay in 1964.

    References

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Soldier Boy - Full Movie

    This feature film is based on the true story of a six-year-old boy, Russia's youngest hero of World War II. Seryozha Aleshkov lost his family, was rescued by an army regiment, and engaged in battles. The little soldier was awarded the Military Merit Medal. Tragedy and love, danger and hope, the bitterness of separation and the joy of belonging, are all intertwined in this wartime drama. #FULLMOVIE #FEATUREFILM #FREEMOVIES #MOVIES #ACTIONMOVIES #ACTION #MOVIES More ways to stream: Amazon Prime: https://pixelfy.me/SoldierBoyAMAZON The Roku Channel: https://pixelfy.me/SoldierBoyROKU Tubi TV: https://pixelfy.me/SoldierBoyTUBI
    1:26:29
    Soldier Boy - Full Movie
    This feature film is based on the true story of a six-year-old boy, Russia's youngest hero...
    published: 29 Jul 2021
    Play in Full Screen
    0:56
    Soldier Boy's Lecture [4K] | The Boys #Shorts
    Soldier Boy's Lecture [4K] | The Boys #Shorts
    published: 20 Mar 2023
    Play in Full Screen
    3:17
    Soldier Boy & Butcher Bond Over Their Terrible Childhoods | The Boys
    Soldier Boy tells Billy about his complicated relationship with his dad, and how he always...
    published: 11 Jul 2022
    Play in Full Screen
    0:32
    SOLDIER BOY
    Johnny leaves Alice behind when he gets drafted into World War II.
    published: 06 May 2013
    Play in Full Screen
    0:59
    Soldier Boy Tells Homelander The Truth | The Boys #shorts
    Show: The Boys Song: In Essence - Kastro Edit By: @snr_cinema In this video, Homelander ...
    published: 20 May 2023
    Play in Full Screen
    8:55
    Real Story!! Six-Year-Old Boy Fought In Battles, Becoming The Youngest Soldier Of World War 2
    During World War II, six-year-old Sergei Aleshkov loses all his relatives and joins the ar...
    published: 29 Aug 2021
    Play in Full Screen
    0:33
    Soldier Boy is OP | Metamorphosis #shorts #theboys
    published: 31 Oct 2022
    Play in Full Screen
    1:00
    SOLDIER BOY - ''You're a f**kin disappointment.''
    Subscribe For More And Your Ideas Are Welcomed!! HEADPHONES RECOMMENDED Series - The Bo...
    published: 09 Jul 2022
    Play in Full Screen
    1:15
    Soldier Boy - (Official Trailer)
    This feature film is based on the true story of a six-year-old boy, Russia's youngest hero...
    published: 02 Feb 2021
    Play in Full Screen
    0:32
    Soldier Boy finds out about Black Noir | The Boys #soldierboy #theboys #homelander #shorts
    published: 26 Jul 2023
    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)); } }); }); }); // -->
    ×