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

! (album)

! is an album by The Dismemberment Plan. It was released on October 2, 1995, on DeSoto Records. The band's original drummer, Steve Cummings, played on this album but left shortly after its release.

Track listing

  • "Survey Says" – 2:08
  • "The Things That Matter" – 2:25
  • "The Small Stuff" – 3:02
  • "OK Jokes Over" – 4:27
  • "Soon to Be Ex Quaker" – 1:26
  • "I'm Going to Buy You a Gun" – 3:06
  • "If I Don't Write" – 4:28
  • "Wouldn't You Like to Know?" – 2:50
  • "13th and Euclid" – 2:18
  • "Fantastic!" – 4:14
  • "Onward, Fat Girl" – 2:46
  • "Rusty" – 4:29
  • Personnel

    The following people were involved in the making of !:

  • Eric Axelson bass
  • Jason Caddell guitar
  • Steve Cummings drums
  • Travis Morrison vocals, guitar
  • Andy Charneco and Don Zientara – recording
  • References


    Podcasts:

    • ALBUM JUICY LUICY TERBARU

      Koleksi lagu juicy luicy pilihan terfavorit.

      published: 05 Aug 2024
    • Taylor Swift Greatest Hits Full Album 2023 2024 Taylor Swift Best Songs Playlist 2023 2024

      Taylor Swift Greatest Hits Full Album 2023 2024 Taylor Swift Best Songs Playlist 2023 2024 https://youtu.be/sZEhMUsyaN0

      published: 24 Feb 2024
    • Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits

      Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ♫ Spotify: https://open.spotify.com/artist/3sNspb6ittvtMsc8cmhKhM?si=yDEnvGhaSb6Pva3MRb19cg ♫ Apple Music: https://music.apple.com/us/artist/helions/1695743079 ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ Tracklist: 00:00:00 1. Shape Of You - Ed Sheeran 00:03:56 2. Photograph - Ed Sheeran 00:08:29 3. Perfect - Ed Sheeran 00:12:53 4. Thinking out Loud - Ed Sheeran 00:17:35 5. Bad Habits - Ed Sheeran 00:21:26 6. I Don't Care - Ed Sheeran x Justin Bieber 00:25:03 7. Give Me Love - Ed Sheeran 00:33:49 8. Supermarket Flowers - Ed Sheeran 00:37:30 9. Eyes Closed - Ed Sheeran 00:40:45 10. Castle...

      published: 18 Jul 2024
    • Kygo (The Album) - Live From The Troll’s Tongue

      Kygo (The Album) out now! Listen- https://kygo.lnk.to/kygothealbum Kygo http://www.soundcloud.com/kygo https://www.facebook.com/kygoofficial/ http://www.instagram.com/kygomusic http://www.twitter.com/kygomusic https://www.youtube.com/user/KygoOfficialVEVO/ http://kygomusic.com A Palm Tree Crew Production Directed by: Johannes Lovund Produced by: Johannes Lovund Executive Producers: Myles Shear & Johannes Lovund Production Coordinator: Oda Pedersen Taule Musical Director: Sean Lascelles 1st AD: Andreas Røe Drone Pilots: Paal Odden, Reiel Bruland, Marius Seierstad FPV Drone: Kristian Thorsen Crane Operator: Øyvind Gaarder Crane AC: Sebastian Storakeren Steadicam Operator: Tore Åfar Steadicam B-cam: Ole Jørgen Larssen Camera Operator: Sindre Aalberg Camera Operator: Stian Engh ...

      published: 21 Jun 2024
    • WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk)

      WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk) 1. Phóng Đổ Tim Em | 0:00 2. Call Me | 2:14 3. Cầu Vĩnh Tuy | 5:49 4. Từng Quen | 8:20 5. bé ơi từ từ | 11:18 6. Lối Chơi (Interlude) | 14:36 7. Tình Yêu Vĩ Mô | 16:58 8. Việt Kiều | 19:34 9. ĐĐĐ | 22:53 10. Quyền Anh | 26:30 11. Tò Te Tí | 29:28 #LoiChoi #TheFirstAlbum #WrenEvans #TheNeoPopPunk --------------------/----------------- [Phóng Đổ Tim Em] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Wren Evans Recording Studio: Wren’s Studio Mixing Engineers: Jiro, itsnk Mastering Engineer: Huỳnh Quang Tuấn Dolby Atmos Engineer: True Sound Records [Call Me] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Produ...

      published: 17 Dec 2023
    • Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hits

      Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hits TOP HITS 2024 PLAYLIST: https://www.youtube.com/watch?v=l-DtvIoCX_g Tracklist: 00:00:00 1. The Lazy Song - Bruno Mars 00:03:09 2. Thats What I Like - Bruno Mars 00:06:36 3. Just the Way You Are - Bruno Mars 00:10:17 4. 24K Magic - Bruno Mars 00:14:03 5. When I Was Your Man - Bruno Mars 00:17:37 6. Grenade - Bruno Mars 00:21:19 7. Locked out of Heaven - Bruno Mars 00:25:13 8. Talking To The Moon - Bruno Mars 00:28:48 9. Versace on The Floor - Bruno Mars vs David Guetta 00:32:10 10. It Will Rain - Bruno Mars 00:36:28 11. Treasure - Bruno Mars 00:39:27 12. Too Good to Say Goodbye - Bruno Mars 00:44:09 13. Perm - Bruno Mars 00:47:39 14. Finesse - Bruno Mars 00:50:50 15. Money Make Her Smile -...

      published: 02 Jul 2024
    • Playlist Lagu Mahalini Viral 2024 - Mahalini Full Album Terbaru 2024 👼

      ------------------------------------------------------------------- 🌈Terima kasih telah mendengarkannya! Ingatlah untuk BERLANGGANAN, tekan tombol Suka, dan Bagikan video kami jika itu mencerahkan hari Anda! Semoga sukses! 🤞Berlangganan : Lagu Pop Terbaru 🔔 Aktifkan ikon lonceng untuk mendapatkan notifikasi upload terbaru kami dan jangan pernah ketinggalan! 🚫 Mengalami masalah hak cipta atau memiliki pertanyaan? Silakan hubungi kami LANGSUNG sebelum mengambil tindakan apa pun, atau untuk pertanyaan, kirimkan email kepada kami. 🔔 Kami menghargai Anda yang menonton! Komentar Anda membuat hari kami menyenangkan. Melalui musik yang kami bagikan, kami bertujuan untuk menambah percikan warna dalam kehidupan sehari-hari Anda! ------------------------------------------------- #lagupopterbaru #Lagu...

      published: 08 Nov 2024
    • Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience)

      Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience) 📌 https://baotangcuanuoitiec.com/ Vũ. - "Bảo Tàng Của Nuối Tiếc" Concert Tour 2024 - ĐÃ MỞ BÁN VÉ TRÊN TICKETBOX 📌 TẠI TP. HCM - 12.10.2024 (20:00): https://ticketbox.vn/baotangcuanuoitiec-sg-vu-22908 Trung Tâm Hội Chợ & Triển Lãm Sài Gòn SECC - 799 Đại lộ Nguyễn Văn Linh, Quận 7 📌 TẠI HÀ NỘI - 26.10.2024 (20:00): https://ticketbox.vn/baotangcuanuoitiec-hn-vu-22907 Công viên Yên Sở - Hoàng Mai - Hà Nội - QL1A Yên Sở, Hoàng Mai Album Tracklist: 00:00 - 1. Nếu Những Tiếc Nuối 04:22 - 2. Mùa Mưa Ấy 08:09 - 3. Ngồi Chờ Trong Vấn Vương - feat. Mỹ Anh 11:30 - 4. Dành Hết Xuân Thì Để Chờ Nhau - feat. Hà Anh Tuấn 16:18 - 5. Và Em Sẽ Luôn Là Người Tôi Yêu Nhất - feat. khang 20:36 - 6. Những Chuyến Bay 25:09 - 7. Mây Khóc Vì Điều Gì? 28:43 ...

      published: 04 Oct 2024
    • Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku

      Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku Lagu Lawas Terpopuler #2000an LAGU TERBAIK PAPINKA FULL ALBUM 2024 (Full Lirik) ---------------------------------------------

      published: 08 Nov 2024
    • Name An Album BETTER Than… 💿 #MusicQuiz #DrizzyDrake #MusicTaste #KanyeWest #DrDre #2001 #RapTakes

      published: 09 Nov 2024
    developed with YouTube
    ALBUM JUICY LUICY TERBARU
    29:12

    ALBUM JUICY LUICY TERBARU

    • Order:
    • Duration: 29:12
    • Uploaded Date: 05 Aug 2024
    • views: 7373255
    Koleksi lagu juicy luicy pilihan terfavorit.
    https://wn.com/Album_Juicy_Luicy_Terbaru
    Taylor Swift Greatest Hits Full Album 2023 2024  Taylor Swift Best Songs Playlist 2023 2024
    14:51

    Taylor Swift Greatest Hits Full Album 2023 2024 Taylor Swift Best Songs Playlist 2023 2024

    • Order:
    • Duration: 14:51
    • Uploaded Date: 24 Feb 2024
    • views: 3450047
    Taylor Swift Greatest Hits Full Album 2023 2024 Taylor Swift Best Songs Playlist 2023 2024 https://youtu.be/sZEhMUsyaN0
    https://wn.com/Taylor_Swift_Greatest_Hits_Full_Album_2023_2024_Taylor_Swift_Best_Songs_Playlist_2023_2024
    Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits
    1:47:46

    Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits

    • Order:
    • Duration: 1:47:46
    • Uploaded Date: 18 Jul 2024
    • views: 5685370
    Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ♫ Spotify: https://open.spotify.com/artist/3sNspb6ittvtMsc8cmhKhM?si=yDEnvGhaSb6Pva3MRb19cg ♫ Apple Music: https://music.apple.com/us/artist/helions/1695743079 ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ Tracklist: 00:00:00 1. Shape Of You - Ed Sheeran 00:03:56 2. Photograph - Ed Sheeran 00:08:29 3. Perfect - Ed Sheeran 00:12:53 4. Thinking out Loud - Ed Sheeran 00:17:35 5. Bad Habits - Ed Sheeran 00:21:26 6. I Don't Care - Ed Sheeran x Justin Bieber 00:25:03 7. Give Me Love - Ed Sheeran 00:33:49 8. Supermarket Flowers - Ed Sheeran 00:37:30 9. Eyes Closed - Ed Sheeran 00:40:45 10. Castle on the Hill - Ed Sheeran 00:45:06 11. Lego House - Ed Sheeran 00:48:11 12. Galway Girl - Ed Sheeran 00:51:02 13. All of the Stars - Ed Sheeran 00:54:57 14. What Do I Know_ - Ed Sheeran 00:58:54 15. Dive - Ed Sheeran 01:02:52 16. How Would You Feel (Paean) - Ed Sheeran 01:07:33 17. Drunk - Ed Sheeran 01:10:53 18. Happier - Ed Sheeran 01:14:21 19. The A Team - Ed Sheeran 01:18:39 20. Shivers - Ed Sheeran 01:22:07 21. Nancy Mulligan - Ed Sheeran 01:25:07 22. Sing - Ed Sheeran 01:29:02 23. One - Ed Sheeran 01:33:15 24. Beautiful People - Ed Sheeran feat. Khalid 01:36:33 25. Small Bump - Ed Sheeran 01:40:52 26. South of the Border - Ed Sheeran 01:44:17 27. Don't - Ed Sheeran ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ► All recording copyrights are owned by HongAn Entertainment
    https://wn.com/Ed_Sheeran_Playlist_2024_Best_Songs_Collection_Full_Album_The_Best_Of_Ed_Sheeran_Greatest_Hits
    Kygo (The Album) - Live From The Troll’s Tongue
    59:47

    Kygo (The Album) - Live From The Troll’s Tongue

    • Order:
    • Duration: 59:47
    • Uploaded Date: 21 Jun 2024
    • views: 4765846
    Kygo (The Album) out now! Listen- https://kygo.lnk.to/kygothealbum Kygo http://www.soundcloud.com/kygo https://www.facebook.com/kygoofficial/ http://www.instagram.com/kygomusic http://www.twitter.com/kygomusic https://www.youtube.com/user/KygoOfficialVEVO/ http://kygomusic.com A Palm Tree Crew Production Directed by: Johannes Lovund Produced by: Johannes Lovund Executive Producers: Myles Shear & Johannes Lovund Production Coordinator: Oda Pedersen Taule Musical Director: Sean Lascelles 1st AD: Andreas Røe Drone Pilots: Paal Odden, Reiel Bruland, Marius Seierstad FPV Drone: Kristian Thorsen Crane Operator: Øyvind Gaarder Crane AC: Sebastian Storakeren Steadicam Operator: Tore Åfar Steadicam B-cam: Ole Jørgen Larssen Camera Operator: Sindre Aalberg Camera Operator: Stian Engh Halstvedt Pyrotechnics: James Waite Pyro-technicians: Unique Pyrotechnics Backline: Konsertsystemer Helicopter: Fonnafly Site Rep Trolltunga: Åse Marie Evjen BTS: Mathias Sæther Safety Climber: Trolltunga Active Edit by: Johannes Lovund Color Grade: Ole Jørgen Larssen Sound Design: Johannes Lovund & Sean Lascelles Sound Mix: Eds John Artists: Kygo Zak Abel Hayla Sigrid Matt Hansen Plested Sandro Cavazza Fred Well Bergen Philharmonic Youth Orchestra Production Company: JL Visuals / Palm Tree Crew Production Chapters 0:00 Intro 1:16 The Feeling 5:25 Whatever 8:20 Me Before You 11:50 Healing (Shattered Heart) 14:27 For Life 17:28 Louder 20:57 Found Another Love 23:47 Fade Away 28:39 Wait (Remix) 32:25 Let Go 34:22 Surrender 37:40 You Can Feel 39:37 Hold On 44:01 Lighthouse 47:13 Can't Do It On My Own 51:15 Without You 55:08 Love Me Now Or Lose Me Later
    https://wn.com/Kygo_(The_Album)_Live_From_The_Troll’S_Tongue
    WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk)
    32:45

    WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk)

    • Order:
    • Duration: 32:45
    • Uploaded Date: 17 Dec 2023
    • views: 16898899
    WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk) 1. Phóng Đổ Tim Em | 0:00 2. Call Me | 2:14 3. Cầu Vĩnh Tuy | 5:49 4. Từng Quen | 8:20 5. bé ơi từ từ | 11:18 6. Lối Chơi (Interlude) | 14:36 7. Tình Yêu Vĩ Mô | 16:58 8. Việt Kiều | 19:34 9. ĐĐĐ | 22:53 10. Quyền Anh | 26:30 11. Tò Te Tí | 29:28 #LoiChoi #TheFirstAlbum #WrenEvans #TheNeoPopPunk --------------------/----------------- [Phóng Đổ Tim Em] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Wren Evans Recording Studio: Wren’s Studio Mixing Engineers: Jiro, itsnk Mastering Engineer: Huỳnh Quang Tuấn Dolby Atmos Engineer: True Sound Records [Call Me] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Soi, Wren Evans Recording Studio: 2T Studio Mixing Engineers: Jiro, Vũ Thắng, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records [Cầu Vĩnh Tuy] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Soi Recording Studio: Wren’s Studio Mixing Engineers: Nguyễn Hải Bình, Jiro, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records [Từng Quen] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Soi, Wren Evans Recording Studio: Wren’s Studio Mixing Engineers: True Sound Records, Vũ Thắng, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records [bé ơi từ từ] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Soi, Wren Evans Recording Studio: Wren’s Studio Mixing Engineers: True Sound Records, Vũ Thắng, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records [Lối Chơi] (Interlude) Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Soi, Wren Evans Recording Studio: Wren’s Studio Mixing Engineers: True Sound Records, Vũ Thắng, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records [Tình Yêu Vĩ Mô] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Recording Studio: 2T Studio, Wren’s Studio Mixing Engineers: Nguyễn Hải Bình, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records [Việt Kiều] Author: Wren Evans Composers: Wren Evans, itsnk Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Guitarist: Soi, Wren Evans Recording Studio: 2T Studio Mixing Engineers: Vũ Thắng, Jiro Mastering Engineer: True Sound Records Dolby Atmos Engineer: Đỗ Huy Cường [ĐĐĐ] Author: Wren Evans Composers: Wren Evans, itsnk Arranger: itsnk Producer: itsnk Recording Studio: Wren’s Studio Mixing Engineers: True Sound Records, Vũ Thắng, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records [Quyền Anh] Authors: Wren Evans, Châu Đăng Khoa Composers: Wren Evans, itsnk, KoQuet Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Recording Studio: 2T Studio, Wren’s Studio Mixing Engineers: Huỳnh Quang Tuấn, Vũ Thắng, itsnk Mastering Engineer: Huỳnh Quang Tuấn Dolby Atmos Engineer: True Sound Records [Tò Te Tí] Authors: Wren Evans, KoQuet Composers: Wren Evans, itsnk, KoQuet, nhựt Arrangers: itsnk, Wren Evans Producers: itsnk, Wren Evans Keyboardist: nhựt Guitarist: Wren Evans Mixing Engineers: Nguyễn Hải Bình, True Sound Records, itsnk Mastering Engineer: True Sound Records Dolby Atmos Engineer: True Sound Records --------------------/----------------- Creative: monoX Team Creative Director: Lim Feng 3D Artist: Đại Trần 3D Fashion Designer: Raion Nguyen Graphic Designers: Ducky Wakk, Blake Nguyen Video Editor: Khang Nguyễn monoX Team Lead of Artist Development: Amy Tran Artist Management Executive: Ái Vy Artist Assistant: Quỳnh Anh Marketing Manager: Brian Phan Creative Social Planner: Trang Dé PR & Communication: Tôn Thất Minh Khôi Business Head: Tô Minh An Lộc Account Executive: Huyền Vy Project Coordinator: Tram Nguyen Graphic Designer: Blake Nguyen Project Producer & Video Editor: Khang Nguyễn Documentary & BTS: Thắng Lê Admin: Ái Khanh Special thanks to METUB và Universal Music Vietnam --------------------/----------------- ▶ WREN EVANS https://www.instagram.com/wrenevans____ https://www.facebook.com/wren.evans11/ © Bản quyền thuộc về Wren Evans Official © Copyright by Wren Evans Official ☞ Do not Reup
    https://wn.com/Wren_Evans_Loi_Choi_Không_Điểm_Dừng_|_Full_Album_Experience_(Ft._Itsnk)
    Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hits
    1:32:45

    Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hits

    • Order:
    • Duration: 1:32:45
    • Uploaded Date: 02 Jul 2024
    • views: 18196435
    Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hits TOP HITS 2024 PLAYLIST: https://www.youtube.com/watch?v=l-DtvIoCX_g Tracklist: 00:00:00 1. The Lazy Song - Bruno Mars 00:03:09 2. Thats What I Like - Bruno Mars 00:06:36 3. Just the Way You Are - Bruno Mars 00:10:17 4. 24K Magic - Bruno Mars 00:14:03 5. When I Was Your Man - Bruno Mars 00:17:37 6. Grenade - Bruno Mars 00:21:19 7. Locked out of Heaven - Bruno Mars 00:25:13 8. Talking To The Moon - Bruno Mars 00:28:48 9. Versace on The Floor - Bruno Mars vs David Guetta 00:32:10 10. It Will Rain - Bruno Mars 00:36:28 11. Treasure - Bruno Mars 00:39:27 12. Too Good to Say Goodbye - Bruno Mars 00:44:09 13. Perm - Bruno Mars 00:47:39 14. Finesse - Bruno Mars 00:50:50 15. Money Make Her Smile - Bruno Mars 00:54:14 16. Natalie - Bruno Mars 00:57:59 17. Gorilla - Bruno Mars 01:02:04 18. Calling All My Lovelies - Bruno Mars 01:06:14 19. If I Knew - Bruno Mars 01:08:27 20. Count on Me - Bruno Mars 01:11:44 21. Finesse Remix - Bruno Mars feat Cardi B 01:15:27 22. Straight up and Down - Bruno Mars 01:18:45 23. Chunky - Bruno Mars 01:21:52 24. Moonshine - Bruno Mars 01:25:41 25. Show Me - Bruno Mars 01:29:09 26. Young Girls - Bruno Mars ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ♫ Spotify: https://open.spotify.com/artist/3sNspb6ittvtMsc8cmhKhM?si=yDEnvGhaSb6Pva3MRb19cg ♫ Apple Music: https://music.apple.com/us/artist/helions/1695743079 ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ► All recording copyrights are owned by HongAn Entertainment
    https://wn.com/Bruno_Mars_Playlist_2024_Best_Songs_Collection_Full_Album_The_Best_Of_Bruno_Mars_Greatest_Hits
    Playlist Lagu Mahalini Viral 2024 - Mahalini Full Album Terbaru 2024 👼
    1:45:03

    Playlist Lagu Mahalini Viral 2024 - Mahalini Full Album Terbaru 2024 👼

    • Order:
    • Duration: 1:45:03
    • Uploaded Date: 08 Nov 2024
    • views: 3939
    ------------------------------------------------------------------- 🌈Terima kasih telah mendengarkannya! Ingatlah untuk BERLANGGANAN, tekan tombol Suka, dan Bagikan video kami jika itu mencerahkan hari Anda! Semoga sukses! 🤞Berlangganan : Lagu Pop Terbaru 🔔 Aktifkan ikon lonceng untuk mendapatkan notifikasi upload terbaru kami dan jangan pernah ketinggalan! 🚫 Mengalami masalah hak cipta atau memiliki pertanyaan? Silakan hubungi kami LANGSUNG sebelum mengambil tindakan apa pun, atau untuk pertanyaan, kirimkan email kepada kami. 🔔 Kami menghargai Anda yang menonton! Komentar Anda membuat hari kami menyenangkan. Melalui musik yang kami bagikan, kami bertujuan untuk menambah percikan warna dalam kehidupan sehari-hari Anda! ------------------------------------------------- #lagupopterbaru #LaguIndonesia #laguSantai
    https://wn.com/Playlist_Lagu_Mahalini_Viral_2024_Mahalini_Full_Album_Terbaru_2024_👼
    Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience)
    39:49

    Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience)

    • Order:
    • Duration: 39:49
    • Uploaded Date: 04 Oct 2024
    • views: 2616523
    Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience) 📌 https://baotangcuanuoitiec.com/ Vũ. - "Bảo Tàng Của Nuối Tiếc" Concert Tour 2024 - ĐÃ MỞ BÁN VÉ TRÊN TICKETBOX 📌 TẠI TP. HCM - 12.10.2024 (20:00): https://ticketbox.vn/baotangcuanuoitiec-sg-vu-22908 Trung Tâm Hội Chợ & Triển Lãm Sài Gòn SECC - 799 Đại lộ Nguyễn Văn Linh, Quận 7 📌 TẠI HÀ NỘI - 26.10.2024 (20:00): https://ticketbox.vn/baotangcuanuoitiec-hn-vu-22907 Công viên Yên Sở - Hoàng Mai - Hà Nội - QL1A Yên Sở, Hoàng Mai Album Tracklist: 00:00 - 1. Nếu Những Tiếc Nuối 04:22 - 2. Mùa Mưa Ấy 08:09 - 3. Ngồi Chờ Trong Vấn Vương - feat. Mỹ Anh 11:30 - 4. Dành Hết Xuân Thì Để Chờ Nhau - feat. Hà Anh Tuấn 16:18 - 5. Và Em Sẽ Luôn Là Người Tôi Yêu Nhất - feat. khang 20:36 - 6. Những Chuyến Bay 25:09 - 7. Mây Khóc Vì Điều Gì? 28:43 - 8. Những Lời Hứa Bỏ Quên - feat. Dear Jane 32:40 - 9. Không Yêu Em Thì Yêu Ai? - feat. Low G 36:32 - 10. Bình Yên - feat. Binz #vu #baotangcuanuoitiec #album #warnermusicvn --------------------- MỌI NGƯỜI SUBSCRIBE KÊNH CỦA VŨ ĐỂ XEM NGAY CÁC VIDEO MỚI NHẤT. ► SUBSCRIBE CHANNEL: http://bit.ly/VuOfficial Mọi người theo dõi thông tin của Tôi tại đây: ► Fanpage: https://www.facebook.com/hoangthaivuofficial ► Instagram: https://instagram.com/toilavu ► Soundcloud: https://soundcloud.com/toilavu --------------------- © Bản quyền thuộc về Vũ Official © Copyright by Vũ Official ☞ Do not Reup The official YouTube channel of Warner Music Vietnam artist Vũ.
    https://wn.com/Bảo_Tàng_Của_Nuối_Tiếc_Vũ._(Full_Album_Experience)
    Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku
    1:26:16

    Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku

    • Order:
    • Duration: 1:26:16
    • Uploaded Date: 08 Nov 2024
    • views: 4920
    Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku Lagu Lawas Terpopuler #2000an LAGU TERBAIK PAPINKA FULL ALBUM 2024 (Full Lirik) ---------------------------------------------
    https://wn.com/Papinka_Full_Album_Tergalau_2024_||_Selama_Ini_Kau_Telah_Menyakitiku
    Name An Album BETTER Than… 💿 #MusicQuiz #DrizzyDrake #MusicTaste #KanyeWest #DrDre #2001 #RapTakes
    0:57

    Name An Album BETTER Than… 💿 #MusicQuiz #DrizzyDrake #MusicTaste #KanyeWest #DrDre #2001 #RapTakes

    • Order:
    • Duration: 0:57
    • Uploaded Date: 09 Nov 2024
    • views: 29963
    https://wn.com/Name_An_Album_Better_Than…_💿_Musicquiz_Drizzydrake_Musictaste_Kanyewest_Drdre_2001_Raptakes
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits
      1:47:46
      Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hitsremove from playlist
    • Kygo (The Album) - Live From The Troll’s Tongue
      59:47
      Kygo (The Album) - Live From The Troll’s Tongueremove from playlist
    • WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk)
      32:45
      WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk)remove from playlist
    • Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hits
      1:32:45
      Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hitsremove from playlist
    • Playlist Lagu Mahalini Viral 2024 - Mahalini Full Album Terbaru 2024 👼
      1:45:03
      Playlist Lagu Mahalini Viral 2024 - Mahalini Full Album Terbaru 2024 👼remove from playlist
    • Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience)
      39:49
      Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience)remove from playlist
    • Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku
      1:26:16
      Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitikuremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    ALBUM JUICY LUICY TERBARU

    Koleksi lagu juicy luicy pilihan terfavorit.
    29:12
    ALBUM JUICY LUICY TERBARU
    Koleksi lagu juicy luicy pilihan terfavorit.
    published: 05 Aug 2024
    Play in Full Screen
    14:51
    Taylor Swift Greatest Hits Full Album 2023 2024 Taylor Swift Best Songs Playlist 2023 2024
    Taylor Swift Greatest Hits Full Album 2023 2024 Taylor Swift Best Songs Playlist 2023 202...
    published: 24 Feb 2024
    Play in Full Screen
    1:47:46
    Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Greatest Hits
    Ed Sheeran Playlist 2024 - Best Songs Collection Full Album - The Best Of Ed Sheeran - Gre...
    published: 18 Jul 2024
    Play in Full Screen
    59:47
    Kygo (The Album) - Live From The Troll’s Tongue
    Kygo (The Album) out now! Listen- https://kygo.lnk.to/kygothealbum Kygo http://www.sound...
    published: 21 Jun 2024
    Play in Full Screen
    32:45
    WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk)
    WREN EVANS - LOI CHOI không điểm dừng | Full Album Experience (ft. itsnk) 1. Phóng Đổ Tim ...
    published: 17 Dec 2023
    Play in Full Screen
    1:32:45
    Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Greatest Hits
    Bruno Mars Playlist 2024 - Best Songs Collection Full Album - The Best Of Bruno Mars - Gre...
    published: 02 Jul 2024
    Play in Full Screen
    1:45:03
    Playlist Lagu Mahalini Viral 2024 - Mahalini Full Album Terbaru 2024 👼
    ------------------------------------------------------------------- 🌈Terima kasih telah me...
    published: 08 Nov 2024
    Play in Full Screen
    39:49
    Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience)
    Bảo Tàng Của Nuối Tiếc / Vũ. (Full Album Experience) 📌 https://baotangcuanuoitiec.com/ Vũ...
    published: 04 Oct 2024
    Play in Full Screen
    1:26:16
    Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku
    Papinka Full Album Tergalau 2024 || Selama Ini Kau Telah Menyakitiku Lagu Lawas Terpopuler...
    published: 08 Nov 2024
    Play in Full Screen
    0:57
    Name An Album BETTER Than… 💿 #MusicQuiz #DrizzyDrake #MusicTaste #KanyeWest #DrDre #2001 #RapTakes
    published: 09 Nov 2024
    Play in Full Screen

    ! (album)

    ! is an album by The Dismemberment Plan. It was released on October 2, 1995, on DeSoto Records. The band's original drummer, Steve Cummings, played on this album but left shortly after its release.

    Track listing

  • "Survey Says" – 2:08
  • "The Things That Matter" – 2:25
  • "The Small Stuff" – 3:02
  • "OK Jokes Over" – 4:27
  • "Soon to Be Ex Quaker" – 1:26
  • "I'm Going to Buy You a Gun" – 3:06
  • "If I Don't Write" – 4:28
  • "Wouldn't You Like to Know?" – 2:50
  • "13th and Euclid" – 2:18
  • "Fantastic!" – 4:14
  • "Onward, Fat Girl" – 2:46
  • "Rusty" – 4:29
  • Personnel

    The following people were involved in the making of !:

  • Eric Axelson bass
  • Jason Caddell guitar
  • Steve Cummings drums
  • Travis Morrison vocals, guitar
  • Andy Charneco and Don Zientara – recording
  • References


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