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

Good Old War

Good Old War is an indie band from Philadelphia, Pennsylvania featuring former members of Days Away.

Biography

Good Old War is made up of Keith Goodwin and Dan Schwartz. The band's name comes from the last names of the three founding members; Goodwin for "Good," Arnold (former member Tim) for "Old," and Schwartz for "War." The band was started in 2008 after Days Away (former band of Keith and Tim) went on hiatus; Schwartz previously played in Unlikely Cowboy. They began by recording some free demos in a late night session at a recording studio, then played with Anthony Green, a fellow Pennsylvania musician, on a short stint of dates along the east coast as well as at the South by Southwest (SXSW) festival in Texas. Good Old War is currently signed with Sargent House, a label which also serves as the band's management company.

The band recorded their debut album in May 2008 in Los Angeles with producer Rick Parker, who also produced the final EP from Days Away, entitled "Ear Candy for the Headphone Trippers." Good Old War then recorded Anthony Green's 2008 album "Avalon" as his back up band, and continued to perform as his band in addition to playing direct support as Good Old War with Person L (a project featuring Kenny Vasoli of The Starting Line) for a nationwide headlining tour that began on August 6, 2008 and ran through September 14, 2008.

Just Another Day

Just Another Day may refer to:

Music

  • Just Another Day (album), an album by Wire Daisies
  • "Just Another Day...", a song by Queen Latifah
  • Just Another Day, a song by Dr. Dre from the album Compton
  • "Just Another Day" (Jon Secada song)
  • "Just Another Day" (Jonathan Wilkes song)
  • "Just Another Day", a song by Jade Valerie from Out of the Box
  • "Just Another Day", a song by John Cena from You Can't See Me
  • "Just Another Day" (John Mellencamp song), a song by John Mellencamp
  • "Just Another Day", a song by Oingo Boingo from Dead Man's Party
  • "Just Another Day", a song from the musical Next to Normal
  • Film and television

  • Just Another Day (2008 film), a short fiction by Hisham Zreiq
  • Just Another Day (2009 film), a hip-hop movie starring Wood Harris
  • Just Another Day (TV series), a 1980s BBC documentary series narrated by John Pitman
  • Just Another Day (2007 TV series), a TV program on the History Channel UK presented by Adam Hart-Davis
  • "Just Another Day", an episode of Pee-wee's Playhouse
  • See also

    Just Another Day (John Mellencamp song)

    "Just Another Day" is a song and recorded by American rock artist John Mellencamp. It was released in November 1996 as the second single from the album, Mr. Happy Go Lucky.

    Music video

    The music video was directed by Samuel Bayer and premiered on November 20, 1996.

    Critical reception

    Larry Flick, of Billboard magazine reviewed the song favorably, calling it a "richly atmospheric blend of acoustic rhythms and raw pop-rock power."

    Charts

    Peak positions

    References

    External links

  • Lyrics of this song at MetroLyrics
  • Just Another Day (album)

    Just Another Day is the first album by Cornwall rock Group Wire Daisies. It was produced by John Cornfield, the owner of Sawmills Studios who has previously worked with Razorlight, Athlete and Supergrass.

    Track listing

    External links


  • Podcasts:

    Good Old War

    • Jon Secada - Just Another Day

      Official Music Video for Just Another Day performed by Jon Secada. Follow Jon Secada: Facebook: https://www.facebook.com/jonsecada Instagram: https://www.instagram.com/jonsecada Website: https://jonsecada.com #JonSecada #JustAnotherDay

      published: 13 Mar 2009
    • Jon Secada ‐ Just another day - Lyrics

      Just another day - Jon Secada ( Lyrics & Video ) Mornings alone (oh, oh) When you come home I breath a little faster Everytime we're together (ohh, ohh, ohh) It'd never be the same (it'd never be the same) if you're not here How can you stay away, (how can you stay) away so long Why can't we stay together oh, oh Give me a reason Give me a reason I, I don't wanna say it I don't wanna find another way Make it through the day without you I, I can't resist Trying to find exactly what I missed It's just another day without you It's just another day (ohh) Making the time (Find the right lines) to make you stay forever What do I have to tell you Just trying to hold on to something (Trying to hold on to something good), oh Give us a chance to make it (give us a chance) to make it No, no, no I...

      published: 14 Jun 2023
    • Just Another Day

      Provided to YouTube by Jive Just Another Day · Too $hort Get In Where You Fit In ℗ 1993 Zomba Recording LLC Released on: 1993-10-26 Producer: QD III Engineer: Rob Chiarelli Mixing Engineer, Recording Engineer: Ant Banks Composer, Lyricist: Quincy D. Jones Composer, Lyricist, Mixing Engineer, Recording Engineer: Todd Shaw Auto-generated by YouTube.

      published: 25 Jan 2017
    • Jon Secada - Just Another Day Without You - HD

      BIENVENIDOS A GDL MUSIC GROUP. Concepto de calidad, contamos con un PLAYLIST bastante armonizado y delicado, cuidando todos los detalles. SUSCRIBETE Y DISFRUTA!.

      published: 20 Jan 2018
    • Paul McCartney - Another Day (1971)

      "Another Day" is a song recorded by Paul McCartney in New York in 1970, during the sessions for his album Ram. Although it was the first single of McCartney's solo career, "Another Day" was actually written and previewed during The Beatles' Let It Be Sessions in 1969. It was officially released on 19 February 1971, with "Oh Woman, Oh Why" as the B-side. Neither song was included on the original pressings of Ram. "Another Day" is written in an observational style reminiscent of "Eleanor Rigby"; Denny Seiwell, the drummer from the Ram Sessions, called it "'Eleanor Rigby' in New York City."[6][7] The lyrics describe the drudgery and sadness of an unnamed woman's life at work and at home. Paul's wife, Linda McCartney, provided vocal harmonies on "Another Day". Describing his and Linda's di...

      published: 06 Apr 2012
    • Queen Latifah - Just Another Day (Official Video)

      Queen Latifah - Just Another Day (Video) from the album 'Black Reign' (1993) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx Lyrics: [Spoken Intro:] We gon take this one o...

      published: 15 Dec 2010
    • Just Another Day

      Provided to YouTube by DistroKid Just Another Day · Mazza_l20 Concrete Jungle ℗ 2709988 Records DK Released on: 2023-08-29 Auto-generated by YouTube.

      published: 28 Aug 2023
    • Queen Latifah - Just Another Day... (Official Music Video)

      REMASTERED IN HD! Official Music Video for Just Another Day… performed by Queen Latifah. Follow Queen Latifah: Website: https://queenlatifah.com Facebook: https://www.facebook.com/QueenLatifah Instagram: https://www.instagram.com/queenlatifah Twitter: https://twitter.com/IAMQUEENLATIFAH #QueenLatifah #JustAnotherDay #Remastered

      published: 28 Apr 2023
    • Jon Secada - Just Another Day - TOTP - 1992

      From the Episode aired on the 23/07/92

      published: 12 Mar 2022
    Jon Secada - Just Another Day
    4:20

    Jon Secada - Just Another Day

    • Order:
    • Duration: 4:20
    • Uploaded Date: 13 Mar 2009
    • views: 87249146
    Official Music Video for Just Another Day performed by Jon Secada. Follow Jon Secada: Facebook: https://www.facebook.com/jonsecada Instagram: https://www.instagram.com/jonsecada Website: https://jonsecada.com #JonSecada #JustAnotherDay
    https://wn.com/Jon_Secada_Just_Another_Day
    Jon Secada ‐ Just another day - Lyrics
    4:20

    Jon Secada ‐ Just another day - Lyrics

    • Order:
    • Duration: 4:20
    • Uploaded Date: 14 Jun 2023
    • views: 341526
    Just another day - Jon Secada ( Lyrics & Video ) Mornings alone (oh, oh) When you come home I breath a little faster Everytime we're together (ohh, ohh, ohh) It'd never be the same (it'd never be the same) if you're not here How can you stay away, (how can you stay) away so long Why can't we stay together oh, oh Give me a reason Give me a reason I, I don't wanna say it I don't wanna find another way Make it through the day without you I, I can't resist Trying to find exactly what I missed It's just another day without you It's just another day (ohh) Making the time (Find the right lines) to make you stay forever What do I have to tell you Just trying to hold on to something (Trying to hold on to something good), oh Give us a chance to make it (give us a chance) to make it No, no, no I'm not that strong I'm not that strong I, I don't wanna say it I don't wanna find another way Make it through the day without you (no, ohhh) Just give me a reason Give me a reason I, I don't wanna say it I don't wanna find another way Make it through the day without you (I wanna make through the day, no) I, I can't resist (maybe no) Trying to find exactly what I missed Make it through the day without you I, I can't resist Trying to find exactly what I missed It's just another day without you
    https://wn.com/Jon_Secada_‐_Just_Another_Day_Lyrics
    Just Another Day
    7:22

    Just Another Day

    • Order:
    • Duration: 7:22
    • Uploaded Date: 25 Jan 2017
    • views: 30823537
    Provided to YouTube by Jive Just Another Day · Too $hort Get In Where You Fit In ℗ 1993 Zomba Recording LLC Released on: 1993-10-26 Producer: QD III Engineer: Rob Chiarelli Mixing Engineer, Recording Engineer: Ant Banks Composer, Lyricist: Quincy D. Jones Composer, Lyricist, Mixing Engineer, Recording Engineer: Todd Shaw Auto-generated by YouTube.
    https://wn.com/Just_Another_Day
    Jon Secada - Just Another Day Without You - HD
    5:28

    Jon Secada - Just Another Day Without You - HD

    • Order:
    • Duration: 5:28
    • Uploaded Date: 20 Jan 2018
    • views: 583620
    BIENVENIDOS A GDL MUSIC GROUP. Concepto de calidad, contamos con un PLAYLIST bastante armonizado y delicado, cuidando todos los detalles. SUSCRIBETE Y DISFRUTA!.
    https://wn.com/Jon_Secada_Just_Another_Day_Without_You_Hd
    Paul McCartney - Another Day (1971)
    3:44

    Paul McCartney - Another Day (1971)

    • Order:
    • Duration: 3:44
    • Uploaded Date: 06 Apr 2012
    • views: 2037690
    "Another Day" is a song recorded by Paul McCartney in New York in 1970, during the sessions for his album Ram. Although it was the first single of McCartney's solo career, "Another Day" was actually written and previewed during The Beatles' Let It Be Sessions in 1969. It was officially released on 19 February 1971, with "Oh Woman, Oh Why" as the B-side. Neither song was included on the original pressings of Ram. "Another Day" is written in an observational style reminiscent of "Eleanor Rigby"; Denny Seiwell, the drummer from the Ram Sessions, called it "'Eleanor Rigby' in New York City."[6][7] The lyrics describe the drudgery and sadness of an unnamed woman's life at work and at home. Paul's wife, Linda McCartney, provided vocal harmonies on "Another Day". Describing his and Linda's distinctive harmonies, McCartney said "I wanted 'our' sound." Paul was deliberately attempting to create a unique McCartney style, a musical identity outside of The Beatles.[3] McCartney had decided to list Linda as co-writer of more than half the songs on Ram, and this decision extended to "Another Day." Despite her lack of a musical pedigree, he insisted that Linda had been an active collaborator, making valuable suggestions about lyrics and melodies.[8] Linda's credits as co-writer were later regarded as business manoeuvres in the post-Beatles legal matters.[1] Matching the lyrical sense of isolation and social alienation was the unique sound of "Another Day." Studio Assistant Engineer of the Ram sessions Dixon Van Winkle said that Paul asked him to pick the single. With McCartney's blessing, Winkle mixed the song and pressed 100 copies for radio stations. "The next day I heard it on the air, I realized...we got carried away with the bass part...it pumped like crazy. But we never remixed the song, and Paul never said anything." Although "Another Day" and "Oh Woman, Oh Why" were not originally included on Ram, some CD re-releases of Ram have one or both songs as bonus tracks. "Another Day" has also appeared on several of McCartney's greatest hits albums, including All the Best!. It also appeared on the Wings greatest hits compilations Wings Greatest and Wingspan: Hits and History even though the song was not credited to Wings and predates the band's formation. (wikipedia) lyrics: Every Day She Takes A Morning Bath To Wet Her Hair, Wraps A Towel 'round Her As She's Heading For The Bedroom Chair, It's Just Another Day. Slipping Into Stockings, Stepping Into Shoes, Dipping In The Pocket Of Her Raincoat. It's Just Another Day. At The Office Where The Papers Grow She Takes A Break, Drinks Another Coffee And She Finds It Hard To Stay Awake, It's Just Another Day. Du Du Du Du Du It's Just Another Day. Du Du Du Du Du It's Just Another Day. So Sad, So Sad, Sometimes She Feels So Sad. Alone In Her Apartment She'd Dwell, Till The Man Of Her Dreams Comes To Break The Spell. Ah, Stay, Don't Stand Her Up And He Comes And He Stays But He Leaves The Next Day, So Sad. Sometimes She Feels So Sad. As She Posts Another Letter To The Sound Of Five, People Gather 'Round Her And She Finds It Hard To Stay Alive, It's Just Another Day. Du Du Du Du Du It's Just Another Day. Du Du Du Du Du It's Just Another Day. So Sad, So Sad, Sometimes She Feels So Sad. Alone In Her Apartment She'd Dwell, Till The Man Of Her Dreams Comes To Break The Spell. Ah, Stay, Don't Stand Her Up And He Comes And He Stays But He Leaves The Next Day, So Sad. Sometimes She Feels So Sad. Every Day She Takes A Morning Bath To Wet Her Hair, Wraps A Towel 'round Her As She's Heading For The Bedroom Chair, It's Just Another Day. Slipping Into Stockings, Stepping Into Shoes, Dipping In The Pocket Of Her Raincoat. Ah, It's Just Another Day. Du Du Du Du Du It's Just Another Day. Du Du Du Du Du It's Just Another Day.
    https://wn.com/Paul_Mccartney_Another_Day_(1971)
    Queen Latifah - Just Another Day (Official Video)
    3:58

    Queen Latifah - Just Another Day (Official Video)

    • Order:
    • Duration: 3:58
    • Uploaded Date: 15 Dec 2010
    • views: 8217122
    Queen Latifah - Just Another Day (Video) from the album 'Black Reign' (1993) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx Lyrics: [Spoken Intro:] We gon take this one over to 275 Halsted 384 Stuyvesant We gon take it over to 155 Morgan 144 Harrison [Chorus:] Just another day, living in the hood Just another day around the way Feelin good today, feelin lovely-yay Just another day, living in the hood Just another day around the way Feelin good today I hear the (gunshot), but I'm here to stay [Verse 1] Well it's a beautiful day in the neighborhood, a beautiful day in the neighborhood Can't go wrong, I feel strong and the flavor's good I'm with whatever comes my way, hip-hop hooray Latifah's on vacation, I'm just plain old Dana today I strap out, step out in every direction Glock, TECs, jimmy hats, in case I need protection So I Land Cruise, pump sounds, play out wanna be’s A kid in a M3's getting jacked right in front of me So I play the TEC close, my finger's on the trigger Don't wanna get wet, so they steps 'cause mine's is slightly bigger But better yet I'm a threat, so you better walk Or get sketched out in chalk, 'cause I don't wanna talk I stay true blue, I'm hoping it's you too I got the fever for the flavor of a Woo Woo So it's back to the block, time to play It's just another day around the way, hey [Chorus] [Verse 2:] Time to chill, hit the hill uptown, let's peep the sights Shoot some pool, act a fool, 'cause it's on tonight I'm doing the knowledge, it's not easy, easy Watching a cop cuff a kid for selling a clip to a DT But it's home, so I flex, get pressures off my chest Slip in a tape, now which hood should I hit next? Stomach ache, head to Steak-N-Take for a bean pie Get a Final Call from the brother in the bow tie I'm where little kids dream and fiend for fun Lots of laughter moms, no pops playing with her son I passed by a girl's wake, they say she died at seven Hit by a stray, but I pray that there's a hood in heaven Fake brothers claim there's no shame in their game You know my name, show me a real nigga with a brain So it's back to the block, time to play It's just another day around the way, hey [Chorus] [Verse 3:] You know I gotta give props, I can't stop, without y'all, I'll be nothin No wreckin', no checks, and no rhymin', no cuttin' No stages, front pages, no phones, no beepers No reason to put Queen in front of the name Latifah I come with the real life perspective and rule 'Cause me and my peoples from around the way remain cool So it's back to the block, time to play It's just another day, around the way, around the muthafuckin' way [Ending Chorus:] Just another day, living in the hood Just another day around the way Feelin good today, I'm feelin lovely-yay Just another day, in the neighborhood Just another day around the way Feelin good today I hear the (gunshot), but I'm here to stay Just another day around the way Feelin good today I hear the (gunshot), but I'm here to stay Cause it's Just another day, in the neighborhood Just another day around the way I'm Feelin good today I'm feelin lovely-yay Feelin' Good Today Feelin' Good Today I Know My Hood's Okay It's Gonna be Okay ABOUT UPROXX VIDEO: UPROXX Video celebrates Hip-Hop, Style, and Creativity through a mix of original shows and music videos from the biggest artists, entertainers, and innovators from our culture. PEOPLE'S PARTY WITH TALIB KWELI People's Party is a weekly interview show hosted by Talib Kweli and Jasmin Leigh. Guests range from the biggest names in hip-hop, to global entertainers, to the most progressive minds moving our culture forward. The audio podcast is available on Apple and Spotify.
    https://wn.com/Queen_Latifah_Just_Another_Day_(Official_Video)
    Just Another Day
    2:23

    Just Another Day

    • Order:
    • Duration: 2:23
    • Uploaded Date: 28 Aug 2023
    • views: 264106
    Provided to YouTube by DistroKid Just Another Day · Mazza_l20 Concrete Jungle ℗ 2709988 Records DK Released on: 2023-08-29 Auto-generated by YouTube.
    https://wn.com/Just_Another_Day
    Queen Latifah - Just Another Day... (Official Music Video)
    3:58

    Queen Latifah - Just Another Day... (Official Music Video)

    • Order:
    • Duration: 3:58
    • Uploaded Date: 28 Apr 2023
    • views: 1620219
    REMASTERED IN HD! Official Music Video for Just Another Day… performed by Queen Latifah. Follow Queen Latifah: Website: https://queenlatifah.com Facebook: https://www.facebook.com/QueenLatifah Instagram: https://www.instagram.com/queenlatifah Twitter: https://twitter.com/IAMQUEENLATIFAH #QueenLatifah #JustAnotherDay #Remastered
    https://wn.com/Queen_Latifah_Just_Another_Day..._(Official_Music_Video)
    Jon Secada  - Just Another Day  - TOTP  - 1992
    3:01

    Jon Secada - Just Another Day - TOTP - 1992

    • Order:
    • Duration: 3:01
    • Uploaded Date: 12 Mar 2022
    • views: 377464
    From the Episode aired on the 23/07/92
    https://wn.com/Jon_Secada_Just_Another_Day_Totp_1992
    • John Mellencamp - Just Another Day

      Music video by John Mellencamp performing Just Another Day. (C) 1996 John Mellencamp under exclusive license to the Island Def Jam Music Group #JohnMellencamp #JustAnotherDay #Vevo #Rock #VevoOfficial

      published: 05 Oct 2009
    • Just Another Day - John Mellencamp

      I don't own this song or the (album) photo, everything here belongs to someone else. Go buy the album Mr. Happy Go Lucky though. It's amazing.

      published: 03 Sep 2014
    • John Mellencamp - "Just Another Day" - Live on Late Night TV 1996

      John performs "Just Another Day," the second single from his 1996 album "Mr. Happy Go Lucky," live on a popular late-night talk show on November 6, 1996.

      published: 23 Jul 2015
    • John Mellencamp Just Another Day Video

      John Mellencamp's Just Another Day Video off of his Mr. Happy Go Lucky album from 1996

      published: 26 Nov 2007
    • John Mellencamp - Just Another Day [OldiesGoldies]

      ♥ John Mellencamp - Just Another Day [OldiesGoldies] ♫ Free Download: http://mp3s.me/record/John+Mellencamp+-+Just+Another+Day

      published: 14 Dec 2016
    • Just Another Day

      Provided to YouTube by Universal Music Group Just Another Day · Jon Secada Jon Secada ℗ Capitol Records; ℗ 1992 UMG Recordings, Inc. Released on: 1992-01-01 Composer Lyricist: Miguel Angel Morejon Composer Lyricist: Jon Secada Auto-generated by YouTube.

      published: 07 Feb 2017
    • Just Another Day-John Mellencamp

      Highway 119 in Montevallo, AL, on 3/31/23.

      published: 01 May 2024
    • Just Another Day by John Mellencamp, covered by Marty Miles

      Nathan and I decided to let you in on our rehearsal and I played my skinny guitar like thing. For More Marty Miles Music: www.reverbnation.com/martymiles JUST ANOTHER DAY John Mellencamp Bobie Doll and Big Jim Picato Call me up every single day The don’t work and they don’t want to Come on down to some bad Café Bobie Doll tells me “live in the moment” Don’t get too far ahead - don’t live in the past I blink my eyes and the moment is over I guess another day has passed But it’s just another day It’s just another day Watching girls on the street Well, that’s alright with me And it’s just another day Bobie Doll and Big Jim Picato Always there with their free advice They’ve got pearl handled pistols underneath their vests The want me to go out drinking with them tonight But it’s just ...

      published: 23 Apr 2018
    • John Mellencamp - Just Another Day playing on FM Station from a 1948 Zenith Console Radio.

      John Mellencamp - "Just Another Day" playing on Zenith model 9H988R AM/FM Tube Console Radio from FM rock station. Recorded with microphone placed about 15 inches away from the radio speaker and this radio works very well for being in original 1948 electronics condition.

      published: 10 Jul 2017
    John Mellencamp - Just Another Day
    3:47

    John Mellencamp - Just Another Day

    • Order:
    • Duration: 3:47
    • Uploaded Date: 05 Oct 2009
    • views: 827978
    Music video by John Mellencamp performing Just Another Day. (C) 1996 John Mellencamp under exclusive license to the Island Def Jam Music Group #JohnMellencamp #JustAnotherDay #Vevo #Rock #VevoOfficial
    https://wn.com/John_Mellencamp_Just_Another_Day
    Just Another Day - John Mellencamp
    3:25

    Just Another Day - John Mellencamp

    • Order:
    • Duration: 3:25
    • Uploaded Date: 03 Sep 2014
    • views: 29182
    I don't own this song or the (album) photo, everything here belongs to someone else. Go buy the album Mr. Happy Go Lucky though. It's amazing.
    https://wn.com/Just_Another_Day_John_Mellencamp
    John Mellencamp - "Just Another Day" - Live on Late Night TV 1996
    3:52

    John Mellencamp - "Just Another Day" - Live on Late Night TV 1996

    • Order:
    • Duration: 3:52
    • Uploaded Date: 23 Jul 2015
    • views: 19733
    John performs "Just Another Day," the second single from his 1996 album "Mr. Happy Go Lucky," live on a popular late-night talk show on November 6, 1996.
    https://wn.com/John_Mellencamp_Just_Another_Day_Live_On_Late_Night_Tv_1996
    John Mellencamp Just Another Day Video
    3:41

    John Mellencamp Just Another Day Video

    • Order:
    • Duration: 3:41
    • Uploaded Date: 26 Nov 2007
    • views: 6806
    John Mellencamp's Just Another Day Video off of his Mr. Happy Go Lucky album from 1996
    https://wn.com/John_Mellencamp_Just_Another_Day_Video
    John Mellencamp - Just Another Day [OldiesGoldies]
    3:48

    John Mellencamp - Just Another Day [OldiesGoldies]

    • Order:
    • Duration: 3:48
    • Uploaded Date: 14 Dec 2016
    • views: 847
    ♥ John Mellencamp - Just Another Day [OldiesGoldies] ♫ Free Download: http://mp3s.me/record/John+Mellencamp+-+Just+Another+Day
    https://wn.com/John_Mellencamp_Just_Another_Day_Oldiesgoldies
    Just Another Day
    5:28

    Just Another Day

    • Order:
    • Duration: 5:28
    • Uploaded Date: 07 Feb 2017
    • views: 50490764
    Provided to YouTube by Universal Music Group Just Another Day · Jon Secada Jon Secada ℗ Capitol Records; ℗ 1992 UMG Recordings, Inc. Released on: 1992-01-01 Composer Lyricist: Miguel Angel Morejon Composer Lyricist: Jon Secada Auto-generated by YouTube.
    https://wn.com/Just_Another_Day
    Just Another Day-John Mellencamp
    3:28

    Just Another Day-John Mellencamp

    • Order:
    • Duration: 3:28
    • Uploaded Date: 01 May 2024
    • views: 52
    Highway 119 in Montevallo, AL, on 3/31/23.
    https://wn.com/Just_Another_Day_John_Mellencamp
    Just Another Day by John Mellencamp, covered by Marty Miles
    4:27

    Just Another Day by John Mellencamp, covered by Marty Miles

    • Order:
    • Duration: 4:27
    • Uploaded Date: 23 Apr 2018
    • views: 1413
    Nathan and I decided to let you in on our rehearsal and I played my skinny guitar like thing. For More Marty Miles Music: www.reverbnation.com/martymiles JUST ANOTHER DAY John Mellencamp Bobie Doll and Big Jim Picato Call me up every single day The don’t work and they don’t want to Come on down to some bad Café Bobie Doll tells me “live in the moment” Don’t get too far ahead - don’t live in the past I blink my eyes and the moment is over I guess another day has passed But it’s just another day It’s just another day Watching girls on the street Well, that’s alright with me And it’s just another day Bobie Doll and Big Jim Picato Always there with their free advice They’ve got pearl handled pistols underneath their vests The want me to go out drinking with them tonight But it’s just another day It’s just another day Watching girls on the street Well, that’s alright with me And it’s just another day You got clean white sheets in the mornin’ Conversation all afternoon Bobie Doll and Big Jim Picato, baby And me and you But it’s just another day Just another day Watching girls on the street Well, that’s alright with me And it’s just another day Well, it’s just another day It’s just another day watching girls on the street Well, that’s alright with me And it’s just another day
    https://wn.com/Just_Another_Day_By_John_Mellencamp,_Covered_By_Marty_Miles
    John Mellencamp - Just Another Day playing on FM Station from a 1948 Zenith Console Radio.
    3:32

    John Mellencamp - Just Another Day playing on FM Station from a 1948 Zenith Console Radio.

    • Order:
    • Duration: 3:32
    • Uploaded Date: 10 Jul 2017
    • views: 500
    John Mellencamp - "Just Another Day" playing on Zenith model 9H988R AM/FM Tube Console Radio from FM rock station. Recorded with microphone placed about 15 inches away from the radio speaker and this radio works very well for being in original 1948 electronics condition.
    https://wn.com/John_Mellencamp_Just_Another_Day_Playing_On_Fm_Station_From_A_1948_Zenith_Console_Radio.
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Jon Secada - Just Another Day
      4:20
      Jon Secada - Just Another Dayremove from playlist
    • Jon Secada ‐ Just another day - Lyrics
      4:20
      Jon Secada ‐ Just another day - Lyricsremove from playlist
    • Just Another Day
      7:22
      Just Another Dayremove from playlist
    • Jon Secada - Just Another Day Without You - HD
      5:28
      Jon Secada - Just Another Day Without You - HDremove from playlist
    • Paul McCartney - Another Day (1971)
      3:44
      Paul McCartney - Another Day (1971)remove from playlist
    • Queen Latifah - Just Another Day (Official Video)
      3:58
      Queen Latifah - Just Another Day (Official Video)remove from playlist
    • Just Another Day
      2:23
      Just Another Dayremove from playlist
    • Queen Latifah - Just Another Day... (Official Music Video)
      3:58
      Queen Latifah - Just Another Day... (Official Music Video)remove from playlist
    PLAYLIST TIME: 0:00 / 38:34

    Jon Secada - Just Another Day

    Official Music Video for Just Another Day performed by Jon Secada. Follow Jon Secada: Facebook: https://www.facebook.com/jonsecada Instagram: https://www.instagram.com/jonsecada Website: https://jonsecada.com #JonSecada #JustAnotherDay
    4:20
    Jon Secada - Just Another Day
    Official Music Video for Just Another Day performed by Jon Secada. Follow Jon Secada: Fa...
    published: 13 Mar 2009
    Play in Full Screen
    4:20
    Jon Secada ‐ Just another day - Lyrics
    Just another day - Jon Secada ( Lyrics & Video ) Mornings alone (oh, oh) When you come ho...
    published: 14 Jun 2023
    Play in Full Screen
    7:22
    Just Another Day
    Provided to YouTube by Jive Just Another Day · Too $hort Get In Where You Fit In ℗ 1993...
    published: 25 Jan 2017
    Play in Full Screen
    5:28
    Jon Secada - Just Another Day Without You - HD
    BIENVENIDOS A GDL MUSIC GROUP. Concepto de calidad, contamos con un PLAYLIST bastante armo...
    published: 20 Jan 2018
    Play in Full Screen
    3:44
    Paul McCartney - Another Day (1971)
    "Another Day" is a song recorded by Paul McCartney in New York in 1970, during the session...
    published: 06 Apr 2012
    Play in Full Screen
    3:58
    Queen Latifah - Just Another Day (Official Video)
    Queen Latifah - Just Another Day (Video) from the album 'Black Reign' (1993) 🔔 Subscribe ...
    published: 15 Dec 2010
    Play in Full Screen
    2:23
    Just Another Day
    Provided to YouTube by DistroKid Just Another Day · Mazza_l20 Concrete Jungle ℗ 2709988...
    published: 28 Aug 2023
    Play in Full Screen
    3:58
    Queen Latifah - Just Another Day... (Official Music Video)
    REMASTERED IN HD! Official Music Video for Just Another Day… performed by Queen Latifah. ...
    published: 28 Apr 2023
    Play in Full Screen
    3:01
    Jon Secada - Just Another Day - TOTP - 1992
    From the Episode aired on the 23/07/92
    published: 12 Mar 2022
    Play in Full Screen

    Good Old War

    Good Old War is an indie band from Philadelphia, Pennsylvania featuring former members of Days Away.

    Biography

    Good Old War is made up of Keith Goodwin and Dan Schwartz. The band's name comes from the last names of the three founding members; Goodwin for "Good," Arnold (former member Tim) for "Old," and Schwartz for "War." The band was started in 2008 after Days Away (former band of Keith and Tim) went on hiatus; Schwartz previously played in Unlikely Cowboy. They began by recording some free demos in a late night session at a recording studio, then played with Anthony Green, a fellow Pennsylvania musician, on a short stint of dates along the east coast as well as at the South by Southwest (SXSW) festival in Texas. Good Old War is currently signed with Sargent House, a label which also serves as the band's management company.

    The band recorded their debut album in May 2008 in Los Angeles with producer Rick Parker, who also produced the final EP from Days Away, entitled "Ear Candy for the Headphone Trippers." Good Old War then recorded Anthony Green's 2008 album "Avalon" as his back up band, and continued to perform as his band in addition to playing direct support as Good Old War with Person L (a project featuring Kenny Vasoli of The Starting Line) for a nationwide headlining tour that began on August 6, 2008 and ran through September 14, 2008.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 35:28

    John Mellencamp - Just Another Day

    Music video by John Mellencamp performing Just Another Day. (C) 1996 John Mellencamp under exclusive license to the Island Def Jam Music Group #JohnMellencamp #JustAnotherDay #Vevo #Rock #VevoOfficial
    3:47
    John Mellencamp - Just Another Day
    Music video by John Mellencamp performing Just Another Day. (C) 1996 John Mellencamp under...
    published: 05 Oct 2009
    Play in Full Screen
    3:25
    Just Another Day - John Mellencamp
    I don't own this song or the (album) photo, everything here belongs to someone else. Go bu...
    published: 03 Sep 2014
    Play in Full Screen
    3:52
    John Mellencamp - "Just Another Day" - Live on Late Night TV 1996
    John performs "Just Another Day," the second single from his 1996 album "Mr. Happy Go Luck...
    published: 23 Jul 2015
    Play in Full Screen
    3:41
    John Mellencamp Just Another Day Video
    John Mellencamp's Just Another Day Video off of his Mr. Happy Go Lucky album from 1996
    published: 26 Nov 2007
    Play in Full Screen
    3:48
    John Mellencamp - Just Another Day [OldiesGoldies]
    ♥ John Mellencamp - Just Another Day [OldiesGoldies] ♫ Free Download: http://mp3s.me/reco...
    published: 14 Dec 2016
    Play in Full Screen
    5:28
    Just Another Day
    Provided to YouTube by Universal Music Group Just Another Day · Jon Secada Jon Secada ℗...
    published: 07 Feb 2017
    Play in Full Screen
    3:28
    Just Another Day-John Mellencamp
    Highway 119 in Montevallo, AL, on 3/31/23.
    published: 01 May 2024
    Play in Full Screen
    4:27
    Just Another Day by John Mellencamp, covered by Marty Miles
    Nathan and I decided to let you in on our rehearsal and I played my skinny guitar like thi...
    published: 23 Apr 2018
    Play in Full Screen
    3:32
    John Mellencamp - Just Another Day playing on FM Station from a 1948 Zenith Console Radio.
    John Mellencamp - "Just Another Day" playing on Zenith model 9H988R AM/FM Tube Console Rad...
    published: 10 Jul 2017
    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)); } }); }); }); // -->
    ×