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

Grammy Award for Album of the Year

The Grammy Award for Album of the Year is presented by the National Academy of Recording Arts and Sciences of the United States to "honor artistic achievement, technical proficiency and overall excellence in the recording industry, without regard to album sales or chart position." Album of the Year is the most prestigious award category at the Grammys having been presented since 1959.

Although it was originally presented to the artist alone, the award is now presented to the main artist, the featured artist(s), the producer, the engineer and/or mixer and the mastering engineer. In 1962, the award name was extended to Album of the Year (other than classical) but, in 1965, the shorter name returned. It was not until 1968, 1969, 1999, 2011, and 2014 that the award was won by a rock, country, hip hop, indie, or electronic music album respectively. As of 2012, classical albums are eligible for this award, with the award for Best Classical Album being discontinued (although no classical album has been nominated in this category since).

Album of the Year (The Good Life album)

Album of the Year is the third album by The Good Life. The limited edition release includes a second disc with an acoustic version of the album. The enhanced CD comes with footage of videos recorded February 3, 2004 at O'Leavers in Omaha, Nebraska.

This album is the 64th release of Saddle Creek Records.

Concept

The album is a concept record chronicling the end of a relationship and the emotions that come with it. The first track begins in April. The entire story is summarized in the first track, "Album of the Year." The main male character is dating a bartender, as referenced in the songs "Album of the Year" (She got a job at Jacob's/serving cocktails to the local drunks) and "Night and Day" (Night and day she tends to her bar/She pours the drinks, they pour out their hearts).

Grammy Award

A Grammy Award (originally called Gramophone Award), or Grammy, is an accolade by the National Academy of Recording Arts and Sciences (NARAS) of the United States to recognize outstanding achievement in the music industry. The annual presentation ceremony features performances by prominent artists, and the presentation of those awards that have a more popular interest. It shares recognition of the music industry as that of the other performance arts: Emmy Awards (television), the Tony Awards (stage performance), and the Academy Awards (motion pictures).

The first Grammy Awards ceremony was held on May 4, 1959, to honor the musical accomplishments by performers for the year 1958. Following the 2011 ceremony, NARAS overhauled many Grammy Award categories for 2012. The 57th Grammy Awards was held on February 8, 2015, at the Staples Center in Los Angeles.

History

The Grammys had their origin in the Hollywood Walk of Fame project in the 1950s. As the recording executives chosen for the Walk of Fame committee worked at compiling a list of important recording industry people who might qualify for a Walk of Fame star, they realized there were many more people who were leaders in their business who would never earn a star on Hollywood Boulevard. The music executives decided to rectify this by creating an award given by their industry similar to the Oscars and the Emmys. This was the beginning of the National Academy of Recording Arts and Sciences. After it was decided to create such an award, there was still a question of what to call it; one working title was the Eddie, to honor the inventor of the phonograph, Thomas Edison. They finally settled on using the name of the invention of Emile Berliner, the gramophone, for the awards, which were first given for the year 1958.

42nd Annual Grammy Awards

The 42nd Annual Grammy Awards were held on February 23, 2000 at the Staples Center in Los Angeles, California. They recognized accomplishments by musicians from the year 1999. Santana was the main recipient with eight Grammys, tying Michael Jackson's record for most awards won in a single night. Santana's album Supernatural was awarded a total of nine awards.

The green Versace dress of Jennifer Lopez was the subject of much media attention following the awards. Christina Aguilera became the second youngest artist to win a Grammy Award at 19 years and 2 months old.

Performances

  • Will Smith (opener)
  • Backstreet Boys "How Deep Is Your Love"/"Papa Was A Rollin' Stone"/"I'll Make Love To You"/"Show Me The Meaning Of Being Lonely"
  • TLC "Unpretty"/"No Scrubs" Medley
  • Carlos Santana and Rob Thomas
  • Britney Spears "From the Bottom of My Broken Heart"/"...Baby One More Time" Medley
  • Elton John and Backstreet Boys "Philadelphia Freedom"
  • Faith Hill "Let Me Let Go"
  • Ricky Martin "Maria"
  • Kid Rock
  • 46th Annual Grammy Awards

    The 46th Annual Grammy Awards were held on February 8, 2004 at the Staples Center in Los Angeles, California. They recognized accomplishments by musicians from the previous year. The big winners were Outkast, who won three awards including Album of the Year & Beyoncé Knowles, who won five Awards. Tied for the most nominations, with six each, were Knowles, Outkast, and Jay-Z.

    Performances

  • Opening: Prince and Beyoncé – "Purple Rain/Baby I'm a Star/Let's Go Crazy/Crazy in Love"
  • The Beatles 40 Years Ago: Sting, Dave Matthews, Pharrell and Vince Gill – "I Saw Her Standing There"
  • Justin Timberlake and Arturo Sandoval – "Señorita"
  • The Black Eyed Peas and Justin Timberlake – "Where Is the Love?"
  • Foo Fighters and Chick Corea – "Times Like These"
  • The White Stripes – "Seven Nation Army"
  • Warren Zevon Tribute
  • BeyoncéDangerously in Love 2
  • Funk Music Tribute: OutKast, Earth, Wind & Fire, Robert Randolph and the Family Band, George Clinton and "Minister" Samuel L. Jackson
  • Winners and nominees

    Podcasts:

    • TAYLOR SWIFT Wins Album Of The Year For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech

      Watch TAYLOR SWIFT's acceptance speech as they accept the GRAMMY for Album Of The Year for 'MIDNIGHTS' at the 2024 GRAMMYs. Head to live.GRAMMY.com now to experience the 2024 GRAMMYs in full: https://live.grammy.com/ Watch the full 2024 GRAMMYs Acceptance Speeches playlist here: https://www.youtube.com/playlist?list=PLzAduZ80dWSs0w4OcQcOmct6yDUMhFdy8 Get a full-access pass to the 2024 GRAMMY Awards at live.GRAMMY.com, where you can watch all of the 2024 GRAMMYs highlights in one place, including GRAMMY performances, acceptance speeches, the GRAMMY Live red carpet livestream special, the full Premiere Ceremony livestream, behind-the-scenes backstage moments, and much, much more. #grammys #2024grammys #66thgrammys  About the Recording Academy / GRAMMYs: Recording Academy is the worl...

      published: 05 Feb 2024
    • Grammy Winning Album Every Year (1959-2023)

      This video goes through each year of the Grammys showing which albums won the “album of the year” award. Thanks for watching! Check out some other videos on the channel: One Rock Song From Every Year The Last 70 Years (1951-2021) https://youtu.be/bY3FXG5g_lI Every Genre The Beatles Performed Named https://youtu.be/gYlE0OeJ7Nw Top 100 Most Popular Classic Artists on Spotify https://youtu.be/ajLAa6k3MD8

      published: 17 Feb 2023
    • HARRY STYLES Wins Album Of The Year For ‘HARRY'S HOUSE' | 2023 GRAMMYs Acceptance Speech

      Watch HARRY STYLES's acceptance speech for Album Of The Year for ‘HARRY'S HOUSE’ at the 2023 GRAMMYs. About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: http://www.grammy.com FACEBOOK: http://grm.my/2gcTcMk TWITTER: http://grm.my/2gDUHUD INSTAGRAM: http://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: http://grm.my/1dTBF8H #GRAMMYs #harrystyles #harryshouse #grammys2023 #albumoftheyear

      published: 06 Feb 2023
    • GRAMMY FOR ALBUM OF THE YEAR WINNERS AND NOMINEES FROM 2008 TO 2022

      HII WELCOME TO MY CHANNEL THIS VIDEO IS ON Grammy Award FOR ALBUM OF THE YEAR WINNERS AND NOMINEES FROM YEAR 2008 TO 2022 PREDICTION IS MENTIONED FOR 2022 GRAMMY. MENTION YOUR PREDICTION IN COMMENTS AND YOUR VIEWS ON PAST WINNERS! PLZ LIKE AND SUBSCRIBE AND ENJOY WATCHING MY VIDEOS!!! #GRAMMY #GRAMMYS #2022GRAMMY #GRAMMYAWARDS #GRAMMYSHOW #GRAMMYHOST #GRAMMYPERFORMANCES #BESTPOPVOCALALBUM #POPALBUM #BESTPOPALBUM #POPPERFORMANCES #POPSOLOPERORMANCE #MALEPOPSOLO #FEMALEPOPSOLO #SONGWRITTENFORVISUALMEDIA #VISUALMEDIA #BILLIEEILISH #BEYONCE #TAYLORSWIFT #LADYGAGA #JOHNLEGEND #BESTMUSICVIDEO #VIDEOOFTHEYEAR #MUSICVIDEO #RECORDOFTHEYAER #GRAMMYRECORDOFTHEYEAR #GRAMMYRECORDYEAR #RECORDOFTHEYEARATGRAMMY #2022RECORDOFTHEYEAR #RECORDOFTHEYEARNOMINEES #RECORDOFTHEYEARWINNERS #RECORDOFTHEYEARGRA...

      published: 31 Mar 2022
    • BIG FOUR WINNERS Grammy Awards Each Year (2010 - 2023) | Hollywood Time | Adele, Taylor Swift, Bruno

      👉BIG FOUR WINNERS (Album Of The Year, Song Of The Year, Record Of The Year, Best New Artist) Grammy Awards Each Year (2010 - 2023) | Hollywood Time | Adele, Taylor Swift, Bruno Mars, Billie Eilish, Lady Gaga, Rihanna, Katy Perry, P!nk, Lizzo, Harry Styles, Beyonce, Olivia Rodrigo, Meghan Trainor, Megan Thee Stallion, Lorde, Daft Punk,... 👉More Videos: ▶ Katy Perry's No.1 Hits Billboard Hot 100: https: //www.youtube.com/watch?v=H3BSViD0cug ▶ Lady Gaga's No.1 Hits Billboard Hot 100: https://www.youtube.com/watch?v=9jruT... ▶ Taylor Swift's No.1 Hits Billboard Hot 100: https://www.youtube.com/watch?v=eBrhl... ▶ Top Certified Female Albums Of the 2010s: https://www.youtube.com/watch?v=DhVmO... ▶ Female Albums That All It's Song's Charted On Billboard Hot 100 https://www.youtube.com/watch?v=b_t...

      published: 14 Feb 2023
    • Taylor Swift | Album of the Year | 58th GRAMMYs

      Subscribe NOW to GRAMMYs on YouTube: http://grm.my/1dTBF8H About GRAMMYs: The recording industry's most prestigious award, the GRAMMY, is presented annually by The Recording Academy. A GRAMMY is awarded by The Recording Academy's voting membership to honor excellence in the recording arts and sciences. It is truly a peer honor, awarded by and to artists and technical professionals for artistic or technical achievement, not sales or chart positions (GRAMMY Awards Voting Process:http://www.grammy.org/recording-acade...). The annual GRAMMY Awards presentation brings together thousands of creative and technical professionals in the recording industry from all over the world. Connect with GRAMMYs: Visit GRAMMYs WEBSITE: http://www.grammy.com Like GRAMMYs on FACEBOOK: http://grm.my/kToash Fo...

      published: 16 Feb 2016
    • TAYLOR SWIFT Wins Best Pop Vocal Album For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech

      Watch TAYLOR SWIFT's acceptance speech as they accept the GRAMMY for Best Pop Vocal Album for 'MIDNIGHTS' at 2024 GRAMMYs. Head to live.GRAMMY.com now to experience the 2024 GRAMMYs in full: https://live.grammy.com/ Watch the full 2024 GRAMMYs Acceptance Speeches playlist here: https://www.youtube.com/playlist?list=PLzAduZ80dWSs0w4OcQcOmct6yDUMhFdy8 Get a full-access pass to the 2024 GRAMMY Awards at live.GRAMMY.com, where you can watch all of the 2024 GRAMMYs highlights in one place, including GRAMMY performances, acceptance speeches, the GRAMMY Live red carpet livestream special, the full Premiere Ceremony livestream, behind-the-scenes backstage moments, and much, much more. #grammys #2024grammys #66thgrammys  About the Recording Academy / GRAMMYs: Recording Academy is the wor...

      published: 05 Feb 2024
    • Taylor Swift Wins Album Of The Year | 2021 GRAMMY Awards Show Acceptance Speech

      Watch Taylor Swift's speech for Album Of The Year for Folklore at the 63rd GRAMMY Awards. 2021 GRAMMY Awards Show: Complete Winners & Nominees List https://www.grammy.com/grammys/news/2021-grammys-complete-winners-nominees-list#1 About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: http://www.grammy.com FACEBOOK: http://grm.my/2gcTcMk TWITTER: http://grm.my/2gDUHUD INSTAGRAM: http://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: http://grm.my/1dTBF8H #GRAMMYs #TaylorSwift #Folklore

      published: 15 Mar 2021
    • Kacey Musgraves Wins Album Of The Year | 2019 GRAMMYs Acceptance Speech

      Watch Kacey Musgraves’ speech for Album Of The Year at the 61st GRAMMY Awards. Full winners list: https://bit.ly/2SnSTFG About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals, and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: http://www.grammy.com FACEBOOK: http://grm.my/2gcTcMk TWITTER: http://grm.my/2gDUHUD INSTAGRAM: http://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: http://grm.my/1dTBF8H #KaceyMusgraves #AlbumoftheYear #GRAMMYs

      published: 11 Feb 2019
    • BILLIE EILISH Wins Song Of The Year For "WHAT WAS I MADE FOR?" | 2024 GRAMMYs Acceptance Speech

      Watch BILLIE EILISH's acceptance speech as they accept the GRAMMY for Song Of The Year for "WHAT WAS I MADE FOR?" at the 2024 GRAMMYs. Head to live.GRAMMY.com now to experience the 2024 GRAMMYs in full: https://live.grammy.com/ Watch the full 2024 GRAMMYs Acceptance Speeches playlist here: https://www.youtube.com/playlist?list=PLzAduZ80dWSs0w4OcQcOmct6yDUMhFdy8 Get a full-access pass to the 2024 GRAMMY Awards at live.GRAMMY.com, where you can watch all of the 2024 GRAMMYs highlights in one place, including GRAMMY performances, acceptance speeches, the GRAMMY Live red carpet livestream special, the full Premiere Ceremony livestream, behind-the-scenes backstage moments, and much, much more. #grammys #2024grammys #66thgrammys  About the Recording Academy / GRAMMYs: Recording Academ...

      published: 05 Feb 2024
    TAYLOR SWIFT Wins Album Of The Year For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech
    3:21

    TAYLOR SWIFT Wins Album Of The Year For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech

    • Order:
    • Duration: 3:21
    • Uploaded Date: 05 Feb 2024
    • views: 4268085
    Watch TAYLOR SWIFT's acceptance speech as they accept the GRAMMY for Album Of The Year for 'MIDNIGHTS' at the 2024 GRAMMYs. Head to live.GRAMMY.com now to experience the 2024 GRAMMYs in full: https://live.grammy.com/ Watch the full 2024 GRAMMYs Acceptance Speeches playlist here: https://www.youtube.com/playlist?list=PLzAduZ80dWSs0w4OcQcOmct6yDUMhFdy8 Get a full-access pass to the 2024 GRAMMY Awards at live.GRAMMY.com, where you can watch all of the 2024 GRAMMYs highlights in one place, including GRAMMY performances, acceptance speeches, the GRAMMY Live red carpet livestream special, the full Premiere Ceremony livestream, behind-the-scenes backstage moments, and much, much more. #grammys #2024grammys #66thgrammys  About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: https://www.grammy.com FACEBOOK: https://grm.my/2gcTcMk TWITTER: https://grm.my/2gDUHUD INSTAGRAM: https://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: https://grm.my/1dTBF8H
    https://wn.com/Taylor_Swift_Wins_Album_Of_The_Year_For_'MIDNIGHTS'_|_2024_Grammys_Acceptance_Speech
    Grammy Winning Album Every Year (1959-2023)
    6:09

    Grammy Winning Album Every Year (1959-2023)

    • Order:
    • Duration: 6:09
    • Uploaded Date: 17 Feb 2023
    • views: 434295
    This video goes through each year of the Grammys showing which albums won the “album of the year” award. Thanks for watching! Check out some other videos on the channel: One Rock Song From Every Year The Last 70 Years (1951-2021) https://youtu.be/bY3FXG5g_lI Every Genre The Beatles Performed Named https://youtu.be/gYlE0OeJ7Nw Top 100 Most Popular Classic Artists on Spotify https://youtu.be/ajLAa6k3MD8
    https://wn.com/Grammy_Winning_Album_Every_Year_(1959_2023)
    HARRY STYLES Wins Album Of The Year For ‘HARRY'S HOUSE' | 2023 GRAMMYs Acceptance Speech
    3:19

    HARRY STYLES Wins Album Of The Year For ‘HARRY'S HOUSE' | 2023 GRAMMYs Acceptance Speech

    • Order:
    • Duration: 3:19
    • Uploaded Date: 06 Feb 2023
    • views: 4224088
    Watch HARRY STYLES's acceptance speech for Album Of The Year for ‘HARRY'S HOUSE’ at the 2023 GRAMMYs. About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: http://www.grammy.com FACEBOOK: http://grm.my/2gcTcMk TWITTER: http://grm.my/2gDUHUD INSTAGRAM: http://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: http://grm.my/1dTBF8H #GRAMMYs #harrystyles #harryshouse #grammys2023 #albumoftheyear
    https://wn.com/Harry_Styles_Wins_Album_Of_The_Year_For_‘Harry'S_House'_|_2023_Grammys_Acceptance_Speech
    GRAMMY FOR ALBUM OF THE YEAR WINNERS AND NOMINEES FROM 2008 TO 2022
    11:19

    GRAMMY FOR ALBUM OF THE YEAR WINNERS AND NOMINEES FROM 2008 TO 2022

    • Order:
    • Duration: 11:19
    • Uploaded Date: 31 Mar 2022
    • views: 66109
    HII WELCOME TO MY CHANNEL THIS VIDEO IS ON Grammy Award FOR ALBUM OF THE YEAR WINNERS AND NOMINEES FROM YEAR 2008 TO 2022 PREDICTION IS MENTIONED FOR 2022 GRAMMY. MENTION YOUR PREDICTION IN COMMENTS AND YOUR VIEWS ON PAST WINNERS! PLZ LIKE AND SUBSCRIBE AND ENJOY WATCHING MY VIDEOS!!! #GRAMMY #GRAMMYS #2022GRAMMY #GRAMMYAWARDS #GRAMMYSHOW #GRAMMYHOST #GRAMMYPERFORMANCES #BESTPOPVOCALALBUM #POPALBUM #BESTPOPALBUM #POPPERFORMANCES #POPSOLOPERORMANCE #MALEPOPSOLO #FEMALEPOPSOLO #SONGWRITTENFORVISUALMEDIA #VISUALMEDIA #BILLIEEILISH #BEYONCE #TAYLORSWIFT #LADYGAGA #JOHNLEGEND #BESTMUSICVIDEO #VIDEOOFTHEYEAR #MUSICVIDEO #RECORDOFTHEYAER #GRAMMYRECORDOFTHEYEAR #GRAMMYRECORDYEAR #RECORDOFTHEYEARATGRAMMY #2022RECORDOFTHEYEAR #RECORDOFTHEYEARNOMINEES #RECORDOFTHEYEARWINNERS #RECORDOFTHEYEARGRAMMYWINNERS #GRAMMYRECORDOFTHEYEARNOMINEES #ALBUMOF THEYEARNOMINEES #ALBUMOFTHEYEARWINNERS #ALBUMOFTHEYEAR #ALBUMOFYEAR
    https://wn.com/Grammy_For_Album_Of_The_Year_Winners_And_Nominees_From_2008_To_2022
    BIG FOUR WINNERS Grammy Awards Each Year (2010 - 2023) | Hollywood Time | Adele, Taylor Swift, Bruno
    9:38

    BIG FOUR WINNERS Grammy Awards Each Year (2010 - 2023) | Hollywood Time | Adele, Taylor Swift, Bruno

    • Order:
    • Duration: 9:38
    • Uploaded Date: 14 Feb 2023
    • views: 992643
    👉BIG FOUR WINNERS (Album Of The Year, Song Of The Year, Record Of The Year, Best New Artist) Grammy Awards Each Year (2010 - 2023) | Hollywood Time | Adele, Taylor Swift, Bruno Mars, Billie Eilish, Lady Gaga, Rihanna, Katy Perry, P!nk, Lizzo, Harry Styles, Beyonce, Olivia Rodrigo, Meghan Trainor, Megan Thee Stallion, Lorde, Daft Punk,... 👉More Videos: ▶ Katy Perry's No.1 Hits Billboard Hot 100: https: //www.youtube.com/watch?v=H3BSViD0cug ▶ Lady Gaga's No.1 Hits Billboard Hot 100: https://www.youtube.com/watch?v=9jruT... ▶ Taylor Swift's No.1 Hits Billboard Hot 100: https://www.youtube.com/watch?v=eBrhl... ▶ Top Certified Female Albums Of the 2010s: https://www.youtube.com/watch?v=DhVmO... ▶ Female Albums That All It's Song's Charted On Billboard Hot 100 https://www.youtube.com/watch?v=b_tJ6... 👉DON'T FORGET TO SUBSCRIBE TO OUR CHANNEL - Youtube: https://www.youtube.com/channel/UCyM6... - Tik Tok: https://www.tiktok.com/@hollywoodtimenow 👉 CONTACT US: hollywoodtimeforyou@gmail.com
    https://wn.com/Big_Four_Winners_Grammy_Awards_Each_Year_(2010_2023)_|_Hollywood_Time_|_Adele,_Taylor_Swift,_Bruno
    Taylor Swift | Album of the Year | 58th GRAMMYs
    1:36

    Taylor Swift | Album of the Year | 58th GRAMMYs

    • Order:
    • Duration: 1:36
    • Uploaded Date: 16 Feb 2016
    • views: 6318545
    Subscribe NOW to GRAMMYs on YouTube: http://grm.my/1dTBF8H About GRAMMYs: The recording industry's most prestigious award, the GRAMMY, is presented annually by The Recording Academy. A GRAMMY is awarded by The Recording Academy's voting membership to honor excellence in the recording arts and sciences. It is truly a peer honor, awarded by and to artists and technical professionals for artistic or technical achievement, not sales or chart positions (GRAMMY Awards Voting Process:http://www.grammy.org/recording-acade...). The annual GRAMMY Awards presentation brings together thousands of creative and technical professionals in the recording industry from all over the world. Connect with GRAMMYs: Visit GRAMMYs WEBSITE: http://www.grammy.com Like GRAMMYs on FACEBOOK: http://grm.my/kToash Follow GRAMMYs on TWITTER: http://grm.my/Ivdmjv Follow GRAMMYs on INSTAGRAM: http://grm.my/1PZqygJ Follow GRAMMYs on TUMBLR: http://grm.my/1aEvoWN Taylor Swift | Album of the Year | 58th GRAMMYs https://www.youtube.com/user/TheGRAMMYs
    https://wn.com/Taylor_Swift_|_Album_Of_The_Year_|_58Th_Grammys
    TAYLOR SWIFT Wins Best Pop Vocal Album For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech
    2:04

    TAYLOR SWIFT Wins Best Pop Vocal Album For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech

    • Order:
    • Duration: 2:04
    • Uploaded Date: 05 Feb 2024
    • views: 4492077
    Watch TAYLOR SWIFT's acceptance speech as they accept the GRAMMY for Best Pop Vocal Album for 'MIDNIGHTS' at 2024 GRAMMYs. Head to live.GRAMMY.com now to experience the 2024 GRAMMYs in full: https://live.grammy.com/ Watch the full 2024 GRAMMYs Acceptance Speeches playlist here: https://www.youtube.com/playlist?list=PLzAduZ80dWSs0w4OcQcOmct6yDUMhFdy8 Get a full-access pass to the 2024 GRAMMY Awards at live.GRAMMY.com, where you can watch all of the 2024 GRAMMYs highlights in one place, including GRAMMY performances, acceptance speeches, the GRAMMY Live red carpet livestream special, the full Premiere Ceremony livestream, behind-the-scenes backstage moments, and much, much more. #grammys #2024grammys #66thgrammys  About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: https://www.grammy.com FACEBOOK: https://grm.my/2gcTcMk TWITTER: https://grm.my/2gDUHUD INSTAGRAM: https://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: https://grm.my/1dTBF8H
    https://wn.com/Taylor_Swift_Wins_Best_Pop_Vocal_Album_For_'MIDNIGHTS'_|_2024_Grammys_Acceptance_Speech
    Taylor Swift Wins Album Of The Year | 2021 GRAMMY Awards Show Acceptance Speech
    3:29

    Taylor Swift Wins Album Of The Year | 2021 GRAMMY Awards Show Acceptance Speech

    • Order:
    • Duration: 3:29
    • Uploaded Date: 15 Mar 2021
    • views: 7252649
    Watch Taylor Swift's speech for Album Of The Year for Folklore at the 63rd GRAMMY Awards. 2021 GRAMMY Awards Show: Complete Winners & Nominees List https://www.grammy.com/grammys/news/2021-grammys-complete-winners-nominees-list#1 About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: http://www.grammy.com FACEBOOK: http://grm.my/2gcTcMk TWITTER: http://grm.my/2gDUHUD INSTAGRAM: http://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: http://grm.my/1dTBF8H #GRAMMYs #TaylorSwift #Folklore
    https://wn.com/Taylor_Swift_Wins_Album_Of_The_Year_|_2021_Grammy_Awards_Show_Acceptance_Speech
    Kacey Musgraves Wins Album Of The Year | 2019 GRAMMYs Acceptance Speech
    2:26

    Kacey Musgraves Wins Album Of The Year | 2019 GRAMMYs Acceptance Speech

    • Order:
    • Duration: 2:26
    • Uploaded Date: 11 Feb 2019
    • views: 1215837
    Watch Kacey Musgraves’ speech for Album Of The Year at the 61st GRAMMY Awards. Full winners list: https://bit.ly/2SnSTFG About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals, and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: http://www.grammy.com FACEBOOK: http://grm.my/2gcTcMk TWITTER: http://grm.my/2gDUHUD INSTAGRAM: http://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: http://grm.my/1dTBF8H #KaceyMusgraves #AlbumoftheYear #GRAMMYs
    https://wn.com/Kacey_Musgraves_Wins_Album_Of_The_Year_|_2019_Grammys_Acceptance_Speech
    BILLIE EILISH Wins Song Of The Year For "WHAT WAS I MADE FOR?" | 2024 GRAMMYs Acceptance Speech
    2:43

    BILLIE EILISH Wins Song Of The Year For "WHAT WAS I MADE FOR?" | 2024 GRAMMYs Acceptance Speech

    • Order:
    • Duration: 2:43
    • Uploaded Date: 05 Feb 2024
    • views: 1855998
    Watch BILLIE EILISH's acceptance speech as they accept the GRAMMY for Song Of The Year for "WHAT WAS I MADE FOR?" at the 2024 GRAMMYs. Head to live.GRAMMY.com now to experience the 2024 GRAMMYs in full: https://live.grammy.com/ Watch the full 2024 GRAMMYs Acceptance Speeches playlist here: https://www.youtube.com/playlist?list=PLzAduZ80dWSs0w4OcQcOmct6yDUMhFdy8 Get a full-access pass to the 2024 GRAMMY Awards at live.GRAMMY.com, where you can watch all of the 2024 GRAMMYs highlights in one place, including GRAMMY performances, acceptance speeches, the GRAMMY Live red carpet livestream special, the full Premiere Ceremony livestream, behind-the-scenes backstage moments, and much, much more. #grammys #2024grammys #66thgrammys  About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: https://www.grammy.com FACEBOOK: https://grm.my/2gcTcMk TWITTER: https://grm.my/2gDUHUD INSTAGRAM: https://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: https://grm.my/1dTBF8H
    https://wn.com/Billie_Eilish_Wins_Song_Of_The_Year_For_What_Was_I_Made_For_|_2024_Grammys_Acceptance_Speech
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 46:04

    TAYLOR SWIFT Wins Album Of The Year For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech

    Watch TAYLOR SWIFT's acceptance speech as they accept the GRAMMY for Album Of The Year for 'MIDNIGHTS' at the 2024 GRAMMYs. Head to live.GRAMMY.com now to experience the 2024 GRAMMYs in full: https://live.grammy.com/ Watch the full 2024 GRAMMYs Acceptance Speeches playlist here: https://www.youtube.com/playlist?list=PLzAduZ80dWSs0w4OcQcOmct6yDUMhFdy8 Get a full-access pass to the 2024 GRAMMY Awards at live.GRAMMY.com, where you can watch all of the 2024 GRAMMYs highlights in one place, including GRAMMY performances, acceptance speeches, the GRAMMY Live red carpet livestream special, the full Premiere Ceremony livestream, behind-the-scenes backstage moments, and much, much more. #grammys #2024grammys #66thgrammys  About the Recording Academy / GRAMMYs: Recording Academy is the world's leading society of musical professionals and is dedicated to celebrating, honoring, and sustaining music's past, present and future. Connect with the Recording Academy / GRAMMYs: WEBSITE: https://www.grammy.com FACEBOOK: https://grm.my/2gcTcMk TWITTER: https://grm.my/2gDUHUD INSTAGRAM: https://grm.my/2gZGIvJ Subscribe NOW to the Recording Academy / GRAMMYs on YouTube: https://grm.my/1dTBF8H
    3:21
    TAYLOR SWIFT Wins Album Of The Year For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech
    Watch TAYLOR SWIFT's acceptance speech as they accept the GRAMMY for Album Of The Year for...
    published: 05 Feb 2024
    Play in Full Screen
    6:09
    Grammy Winning Album Every Year (1959-2023)
    This video goes through each year of the Grammys showing which albums won the “album of th...
    published: 17 Feb 2023
    Play in Full Screen
    3:19
    HARRY STYLES Wins Album Of The Year For ‘HARRY'S HOUSE' | 2023 GRAMMYs Acceptance Speech
    Watch HARRY STYLES's acceptance speech for Album Of The Year for ‘HARRY'S HOUSE’ at the 20...
    published: 06 Feb 2023
    Play in Full Screen
    11:19
    GRAMMY FOR ALBUM OF THE YEAR WINNERS AND NOMINEES FROM 2008 TO 2022
    HII WELCOME TO MY CHANNEL THIS VIDEO IS ON Grammy Award FOR ALBUM OF THE YEAR WINNERS AND ...
    published: 31 Mar 2022
    Play in Full Screen
    9:38
    BIG FOUR WINNERS Grammy Awards Each Year (2010 - 2023) | Hollywood Time | Adele, Taylor Swift, Bruno
    👉BIG FOUR WINNERS (Album Of The Year, Song Of The Year, Record Of The Year, Best New Artis...
    published: 14 Feb 2023
    Play in Full Screen
    1:36
    Taylor Swift | Album of the Year | 58th GRAMMYs
    Subscribe NOW to GRAMMYs on YouTube: http://grm.my/1dTBF8H About GRAMMYs: The recording ...
    published: 16 Feb 2016
    Play in Full Screen
    2:04
    TAYLOR SWIFT Wins Best Pop Vocal Album For 'MIDNIGHTS' | 2024 GRAMMYs Acceptance Speech
    Watch TAYLOR SWIFT's acceptance speech as they accept the GRAMMY for Best Pop Vocal Album ...
    published: 05 Feb 2024
    Play in Full Screen
    3:29
    Taylor Swift Wins Album Of The Year | 2021 GRAMMY Awards Show Acceptance Speech
    Watch Taylor Swift's speech for Album Of The Year for Folklore at the 63rd GRAMMY Awards. ...
    published: 15 Mar 2021
    Play in Full Screen
    2:26
    Kacey Musgraves Wins Album Of The Year | 2019 GRAMMYs Acceptance Speech
    Watch Kacey Musgraves’ speech for Album Of The Year at the 61st GRAMMY Awards. Full winne...
    published: 11 Feb 2019
    Play in Full Screen
    2:43
    BILLIE EILISH Wins Song Of The Year For "WHAT WAS I MADE FOR?" | 2024 GRAMMYs Acceptance Speech
    Watch BILLIE EILISH's acceptance speech as they accept the GRAMMY for Song Of The Year for...
    published: 05 Feb 2024
    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)); } }); }); }); // -->
    ×