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

Do What You Wanna Do

"Do What You Wanna Do" is the debut, 1977 single by Nassau, Bahamas based group, T-Connection. The single went to #1 on the disco/dance charts for seven weeks. The single made it to #15 on the soul charts and peaked at #46 on the pop chart.

References

South Park (video game)

South Park is a first-person shooter video game based on the American animated comedy series of the same name. The game was developed by Iguana Entertainment and published by Acclaim Entertainment for the Nintendo 64 in 1998 for North America and in 1999 for Europe. It was later ported to Microsoft Windows in 1999 and released in North America only. The PlayStation port was developed by Appaloosa Interactive in 1999. A Game Boy Color version was in development, but it was eventually canceled by Matt Stone and Trey Parker, the creators, because they felt the game wouldn't fit in a console marketed towards kids. However, they did keep a few copies of the Game Boy Color version to commemorate what was originally started as the first South Park game. The PC and PlayStation versions of South Park were very poorly received by critics though the Nintendo 64 version was generally well received and in late 1999, Acclaim Entertainment announced a Nintendo 64 sequel for the South Park video game but it was cancelled.

South Park (season 10)

The tenth season of South Park, an American animated television series created by Trey Parker and Matt Stone, began airing on March 22, 2006, and is their favorite season. The tenth season concluded after 14 episodes on November 15, 2006. This is the first season in which Kenny does not die and the last season featuring Isaac Hayes (the voice of Chef) as Hayes quit the show following the backlash behind season nine's "Trapped in the Closet" episode. This season also had a minor controversy when the Halloween episode "Hell on Earth 2006" depicted The Crocodile Hunter's Steve Irwin with a stingray lodged in his chest getting thrown out of Satan's Halloween party for not being in costume. Episode 2 in this season is the last one with the Braniff Airlines logo. All the episodes in this tenth season was written and directed by Trey Parker.

This season is also home to the episode, "Make Love, Not Warcraft", which won the Primetime Emmy Award for Outstanding Animated Program (for Programming Less Than One Hour) in 2007. It's also home to the two-part episodes "Cartoon Wars Part I" & II, which involved Family Guy trying to air an image of the Muslim prophet Muhammad, and "Go God Go" which involved a future world where there was no religion. The season was listed as one of the 20 Best Seasons of the Last 20 Years by Pajiba.

200 (South Park)

"200" is the fifth episode of the fourteenth season of South Park, and the 200th overall episode of the series. It originally aired on Comedy Central in the United States on April 14, 2010. In the episode, Tom Cruise and all other celebrities who have been mocked by residents of South Park in the past plan to file a class action lawsuit against the town, but Cruise promises to end the lawsuit if the town can get the Muslim prophet Muhammad to meet him.

The episode was written and directed by series co-creator Trey Parker. To celebrate their landmark episode, Parker and fellow series co-creator Matt Stone combined many of South Park's past storylines and controversies. The Muhammad subplot, similar to the one previously featured in the season 10 episode "Cartoon Wars", refers to Comedy Central's past refusal to allow images of Muhammad to be shown on the network in response to the riots and threats generated from controversial cartoons in 2005 and 2007 of Muhammad in European newspapers.

Podcasts:

  • DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)

    Booking & Email: https://tinyurl.com/Contact-Earworm YouTube Playlist: https://tinyurl.com/DJ-Earworm-YouTube-Playlist Instagram: https://www.instagram.com/djearworm TikTok: https://www.tiktok.com/@earworm Facebook: https://www.facebook.com/Earworm Twitter: https://twitter.com/djearworm SoundCloud: https://soundcloud.com/dj_earworm YouTube: http://youtube.com/djearworm Featuring: A Great Big World feat. Christina Aguilera - Say Something Ariana Grande feat. Iggy Azalea - Problem Bastille - Pompeii Dj Snake & Lil Jon - Turn Down For What Hozier - Take Me to Church Idina Menzel - Let It Go Iggy Azalea feat. Charli XCX - Fancy Iggy Azalea feat. Rita Ora - Black Widow Jason Derulo feat. 2 Chainz - Talk Dirty Jeremih feat. YG - Don't Tell 'Em Jessie J feat. Ariana Grande & Nicki Minaj - Bang...

    published: 03 Dec 2014
  • Do What You Wanna Do

    Provided to YouTube by Virgin Music Group Do What You Wanna Do · Devin the Dude The Dude ℗ Rap-A-Lot/SoSouth Music Distribution Released on: 1998-06-16 Writer, Composer: D. Copeland Writer, Composer: J. Hearne Writer, Composer: J. Johnson Auto-generated by YouTube.

    published: 23 Jan 2017
  • LYRICS - DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)

    Booking & Email: https://tinyurl.com/Contact-Earworm YouTube Playlist: https://tinyurl.com/DJ-Earworm-YouTube-Playlist Instagram: https://www.instagram.com/djearworm TikTok: https://www.tiktok.com/@earworm Facebook: https://www.facebook.com/Earworm Twitter: https://twitter.com/djearworm SoundCloud: https://soundcloud.com/dj_earworm YouTube: http://youtube.com/djearworm A mashup of the 25 biggest hits during 2014 in the U.S. Featuring: A Great Big World feat. Christina Aguilera - Say Something Ariana Grande feat. Iggy Azalea - Problem Bastille - Pompeii Dj Snake & Lil Jon - Turn Down For What Hozier - Take Me to Church Idina Menzel - Let It Go Iggy Azalea feat. Charli XCX - Fancy Iggy Azalea feat. Rita Ora - Black Widow Jason Derulo feat. 2 Chainz - Talk Dirty Jeremih feat. YG - Don't Te...

    published: 18 Dec 2014
  • TEP BOPREK "WHAT YOU WANNA DO" MUSIC VIDEO

    TEP BOPREK "WHAT YOU WANNA DO" MUSIC VIDEO អរគុណបងប្អូនសូមជួយ subcribe អោយបាន 100K ផងណាចា៎ នៅមាន VIDEO ថ្មីៗជាច្រើនទៀតមានញុំា មានដើរលេង ច្រើនមុខច្រើនកន្លែងទៀត subcribe អោយហើយមក អរគុណចា៎ more info : DM : https://www.instagram.com/boprektbp/ FB PAGE : https://www.facebook.com/tepboprekofficial/ EMAIL : boprektepofficial@gmail.com Website : www.DIT-WAY.com @Alright : TEP BOPREK ( TBP & DIT-WAY )

    published: 01 Aug 2019
  • South Park - You Gotta Do What You Wanna Do

    Elementary School Musical

    published: 16 Sep 2021
  • Do What You Wanna Do | Lyric Video | Elevation Church Kids

    Lyric video for "Do What You Wanna Do" from the album, Living Color by Elevation Church Kids. Available everywhere now: https://lnk.to/LivingColorYD Subscribe now to stay connected with our ministry https://bit.ly/2GXXOsw Find chord charts, lyrics, and more: www.elevationchurchkids.com Connect with eKidz: Parents Blog: https://elevationekidz.com/ Instagram: https://www.instagram.com/elevationekidz/ Lyrics: VERSE 1 Whatever Your will I want it Whatever You say I’ll listen Where ever You go I’ll follow Just to be where You are I wanna be where You are CHORUS Woah do what You wanna do Woah can’t get enough of You In my heart have Your way I don't wanna leave the same Woah do what You wanna do Do what You wanna do VERSE 2 You are the one I’m after Gotta be with You forever ...

    published: 13 Nov 2020
  • Lil Tjay - What You Wanna Do (Official Audio)

    Official audio for “What You Wanna Do“ by Lil Tjay. Listen + Download ‘Destined 2 Win’ out now: https://liltjay.lnk.to/Destined2Win Amazon Music - https://liltjay.lnk.to/Destined2Win/amazonmusic    Apple Music - https://liltjay.lnk.to/Destined2Win/applemusic Audiomack - https://liltjay.lnk.to/Destined2Win/audiomack Deezer - https://liltjay.lnk.to/Destined2Win/deezer iTunes - https://liltjay.lnk.to/Destined2Win/itunes Soundcloud - https://liltjay.lnk.to/Destined2Win/soundcloud Spotify – https://liltjay.lnk.to/Destined2Win/spotify Tidal - https://liltjay.lnk.to/Destined2Win/tidal YouTube Music - https://liltjay.lnk.to/Destined2Win/youtubemusic Follow Lil Tjay Facebook - https://www.facebook.com/LilTjay​ Instagram - https://www.instagram.com/liltjay/​ TikTok - http://tiktok.com/@liltjay​ ...

    published: 02 Apr 2021
  • Good Will Hunting - "What Do You Wanna Do?"

    Scene from "Good Will Hunting"

    published: 16 Jan 2011
  • Mocca - Do What You Wanna Do (Featuring Kelas Mocca)

    Mocca performing 'Do What You Wanna Do'. Listen On JOOX : https://goo.gl/NojVix Listen On DEEZER : https://goo.gl/FCOuU0 Get It On iTunes : https://goo.gl/43lyXP Buy Cassette : https://goo.gl/gJS4BP Directed : Iswara Aji Pratama Subscribe for more: https://www.youtube.com/user/ffwdrecords More about Mocca: http://www.ffwdrecords.com/mocca/ https://twitter.com/FFWDRecords https://www.facebook.com/ffwdrecords Mocca performing Do What You Wanna Do. (C) 2007 FFWD.

    published: 14 Sep 2015
  • Mocca - Do What You Wanna Do (OST Bandhobi / 반두비)

    Indonesian band Mocca sings official OST Bandhobi (반두비), a critically acclaimed Korean movie 2009 about Bangladeshi worker in Korea. Bandhobi roughly means "girl friend" in Bengali.

    published: 11 Jan 2010
DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)
4:11

DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)

  • Order:
  • Duration: 4:11
  • Uploaded Date: 03 Dec 2014
  • views: 27658407
Booking & Email: https://tinyurl.com/Contact-Earworm YouTube Playlist: https://tinyurl.com/DJ-Earworm-YouTube-Playlist Instagram: https://www.instagram.com/djearworm TikTok: https://www.tiktok.com/@earworm Facebook: https://www.facebook.com/Earworm Twitter: https://twitter.com/djearworm SoundCloud: https://soundcloud.com/dj_earworm YouTube: http://youtube.com/djearworm Featuring: A Great Big World feat. Christina Aguilera - Say Something Ariana Grande feat. Iggy Azalea - Problem Bastille - Pompeii Dj Snake & Lil Jon - Turn Down For What Hozier - Take Me to Church Idina Menzel - Let It Go Iggy Azalea feat. Charli XCX - Fancy Iggy Azalea feat. Rita Ora - Black Widow Jason Derulo feat. 2 Chainz - Talk Dirty Jeremih feat. YG - Don't Tell 'Em Jessie J feat. Ariana Grande & Nicki Minaj - Bang Bang John Legend - All Of Me Katy Perry feat. Juicy J - Dark Horse Lorde - Team Magic! - Rude Maroon 5 - Animals Meghan Trainor - All About That Bass Nico & Vinz - Am I Wrong One Direction - Story of My Life Passenger - Let Her Go Pharrell Williams - Happy Pitbull feat. Ke$ha - Timber Sam Smith - stay with me Taylor Swift - Shake It Off Tove Lo - Habits #DJ_Earworm #UnitedStateofPop #Mashups
https://wn.com/Dj_Earworm_Mashup_United_State_Of_Pop_2014_(Do_What_You_Wanna_Do)
Do What You Wanna Do
4:28

Do What You Wanna Do

  • Order:
  • Duration: 4:28
  • Uploaded Date: 23 Jan 2017
  • views: 8407231
Provided to YouTube by Virgin Music Group Do What You Wanna Do · Devin the Dude The Dude ℗ Rap-A-Lot/SoSouth Music Distribution Released on: 1998-06-16 Writer, Composer: D. Copeland Writer, Composer: J. Hearne Writer, Composer: J. Johnson Auto-generated by YouTube.
https://wn.com/Do_What_You_Wanna_Do
LYRICS - DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)
3:57

LYRICS - DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)

  • Order:
  • Duration: 3:57
  • Uploaded Date: 18 Dec 2014
  • views: 6799812
Booking & Email: https://tinyurl.com/Contact-Earworm YouTube Playlist: https://tinyurl.com/DJ-Earworm-YouTube-Playlist Instagram: https://www.instagram.com/djearworm TikTok: https://www.tiktok.com/@earworm Facebook: https://www.facebook.com/Earworm Twitter: https://twitter.com/djearworm SoundCloud: https://soundcloud.com/dj_earworm YouTube: http://youtube.com/djearworm A mashup of the 25 biggest hits during 2014 in the U.S. Featuring: A Great Big World feat. Christina Aguilera - Say Something Ariana Grande feat. Iggy Azalea - Problem Bastille - Pompeii Dj Snake & Lil Jon - Turn Down For What Hozier - Take Me to Church Idina Menzel - Let It Go Iggy Azalea feat. Charli XCX - Fancy Iggy Azalea feat. Rita Ora - Black Widow Jason Derulo feat. 2 Chainz - Talk Dirty Jeremih feat. YG - Don't Tell 'Em Jessie J feat. Ariana Grande & Nicki Minaj - Bang Bang John Legend - All Of Me Katy Perry feat. Juicy J - Dark Horse Lorde - Team Magic! - Rude Maroon 5 - Animals Meghan Trainor - All About That Bass Nico & Vinz - Am I Wrong One Direction - Story of My Life Passenger - Let Her Go Pharrell Williams - Happy Pitbull feat. Ke$ha - Timber Sam Smith - stay with me Taylor Swift - Shake It Off Tove Lo - Habits #DJ_Earworm #UnitedStateofPop #Mashups
https://wn.com/Lyrics_Dj_Earworm_Mashup_United_State_Of_Pop_2014_(Do_What_You_Wanna_Do)
TEP BOPREK "WHAT YOU WANNA DO" MUSIC VIDEO
3:53

TEP BOPREK "WHAT YOU WANNA DO" MUSIC VIDEO

  • Order:
  • Duration: 3:53
  • Uploaded Date: 01 Aug 2019
  • views: 1265315
TEP BOPREK "WHAT YOU WANNA DO" MUSIC VIDEO អរគុណបងប្អូនសូមជួយ subcribe អោយបាន 100K ផងណាចា៎ នៅមាន VIDEO ថ្មីៗជាច្រើនទៀតមានញុំា មានដើរលេង ច្រើនមុខច្រើនកន្លែងទៀត subcribe អោយហើយមក អរគុណចា៎ more info : DM : https://www.instagram.com/boprektbp/ FB PAGE : https://www.facebook.com/tepboprekofficial/ EMAIL : boprektepofficial@gmail.com Website : www.DIT-WAY.com @Alright : TEP BOPREK ( TBP & DIT-WAY )
https://wn.com/Tep_Boprek_What_You_Wanna_Do_Music_Video
South Park - You Gotta Do What You Wanna Do
1:54

South Park - You Gotta Do What You Wanna Do

  • Order:
  • Duration: 1:54
  • Uploaded Date: 16 Sep 2021
  • views: 129328
Elementary School Musical
https://wn.com/South_Park_You_Gotta_Do_What_You_Wanna_Do
Do What You Wanna Do | Lyric Video | Elevation Church Kids
3:09

Do What You Wanna Do | Lyric Video | Elevation Church Kids

  • Order:
  • Duration: 3:09
  • Uploaded Date: 13 Nov 2020
  • views: 82604
Lyric video for "Do What You Wanna Do" from the album, Living Color by Elevation Church Kids. Available everywhere now: https://lnk.to/LivingColorYD Subscribe now to stay connected with our ministry https://bit.ly/2GXXOsw Find chord charts, lyrics, and more: www.elevationchurchkids.com Connect with eKidz: Parents Blog: https://elevationekidz.com/ Instagram: https://www.instagram.com/elevationekidz/ Lyrics: VERSE 1 Whatever Your will I want it Whatever You say I’ll listen Where ever You go I’ll follow Just to be where You are I wanna be where You are CHORUS Woah do what You wanna do Woah can’t get enough of You In my heart have Your way I don't wanna leave the same Woah do what You wanna do Do what You wanna do VERSE 2 You are the one I’m after Gotta be with You forever Nothing else matters But Your presence Right here is where You are I wanna be where You are BRIDGE You've torn down the walls You make giants fall I know there’s nothing You can’t do Brought sight to the blind Raised dead bones to life I know there’s nothing You can’t do I know there’s nothing You can’t do Davide Mutendji, Bryan Fowler, Joey Signa, Jonathan Smith ©2020 Music by Elevation Worship Publishing, So Essential Tunes (SESAC)/RELWOF (SESAC), Be Essential Songs (BMI)/Cashagamble Jet Music (BMI), Elevation Worship Publishing 2 CCLI: 7148554 #dowhatyouwannado #elevationchurchkids #livingcolor #kidsworship
https://wn.com/Do_What_You_Wanna_Do_|_Lyric_Video_|_Elevation_Church_Kids
Lil Tjay - What You Wanna Do (Official Audio)
4:07

Lil Tjay - What You Wanna Do (Official Audio)

  • Order:
  • Duration: 4:07
  • Uploaded Date: 02 Apr 2021
  • views: 12791553
Official audio for “What You Wanna Do“ by Lil Tjay. Listen + Download ‘Destined 2 Win’ out now: https://liltjay.lnk.to/Destined2Win Amazon Music - https://liltjay.lnk.to/Destined2Win/amazonmusic    Apple Music - https://liltjay.lnk.to/Destined2Win/applemusic Audiomack - https://liltjay.lnk.to/Destined2Win/audiomack Deezer - https://liltjay.lnk.to/Destined2Win/deezer iTunes - https://liltjay.lnk.to/Destined2Win/itunes Soundcloud - https://liltjay.lnk.to/Destined2Win/soundcloud Spotify – https://liltjay.lnk.to/Destined2Win/spotify Tidal - https://liltjay.lnk.to/Destined2Win/tidal YouTube Music - https://liltjay.lnk.to/Destined2Win/youtubemusic Follow Lil Tjay Facebook - https://www.facebook.com/LilTjay​ Instagram - https://www.instagram.com/liltjay/​ TikTok - http://tiktok.com/@liltjay​ Twitter - https://twitter.com/liltjay​ Text - 917-722-4610 https://www.liltjaymusic.com/​ #LilTjay​ #Destined2Win #WhatYouWannaDo
https://wn.com/Lil_Tjay_What_You_Wanna_Do_(Official_Audio)
Good Will Hunting - "What Do You Wanna Do?"
3:56

Good Will Hunting - "What Do You Wanna Do?"

  • Order:
  • Duration: 3:56
  • Uploaded Date: 16 Jan 2011
  • views: 3016677
Scene from "Good Will Hunting"
https://wn.com/Good_Will_Hunting_What_Do_You_Wanna_Do
Mocca - Do What You Wanna Do (Featuring Kelas Mocca)
3:20

Mocca - Do What You Wanna Do (Featuring Kelas Mocca)

  • Order:
  • Duration: 3:20
  • Uploaded Date: 14 Sep 2015
  • views: 77246
Mocca performing 'Do What You Wanna Do'. Listen On JOOX : https://goo.gl/NojVix Listen On DEEZER : https://goo.gl/FCOuU0 Get It On iTunes : https://goo.gl/43lyXP Buy Cassette : https://goo.gl/gJS4BP Directed : Iswara Aji Pratama Subscribe for more: https://www.youtube.com/user/ffwdrecords More about Mocca: http://www.ffwdrecords.com/mocca/ https://twitter.com/FFWDRecords https://www.facebook.com/ffwdrecords Mocca performing Do What You Wanna Do. (C) 2007 FFWD.
https://wn.com/Mocca_Do_What_You_Wanna_Do_(Featuring_Kelas_Mocca)
Mocca - Do What You Wanna Do (OST Bandhobi / 반두비)
3:27

Mocca - Do What You Wanna Do (OST Bandhobi / 반두비)

  • Order:
  • Duration: 3:27
  • Uploaded Date: 11 Jan 2010
  • views: 403971
Indonesian band Mocca sings official OST Bandhobi (반두비), a critically acclaimed Korean movie 2009 about Bangladeshi worker in Korea. Bandhobi roughly means "girl friend" in Bengali.
https://wn.com/Mocca_Do_What_You_Wanna_Do_(Ost_Bandhobi_반두비)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 36:22

DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)

Booking & Email: https://tinyurl.com/Contact-Earworm YouTube Playlist: https://tinyurl.com/DJ-Earworm-YouTube-Playlist Instagram: https://www.instagram.com/djearworm TikTok: https://www.tiktok.com/@earworm Facebook: https://www.facebook.com/Earworm Twitter: https://twitter.com/djearworm SoundCloud: https://soundcloud.com/dj_earworm YouTube: http://youtube.com/djearworm Featuring: A Great Big World feat. Christina Aguilera - Say Something Ariana Grande feat. Iggy Azalea - Problem Bastille - Pompeii Dj Snake & Lil Jon - Turn Down For What Hozier - Take Me to Church Idina Menzel - Let It Go Iggy Azalea feat. Charli XCX - Fancy Iggy Azalea feat. Rita Ora - Black Widow Jason Derulo feat. 2 Chainz - Talk Dirty Jeremih feat. YG - Don't Tell 'Em Jessie J feat. Ariana Grande & Nicki Minaj - Bang Bang John Legend - All Of Me Katy Perry feat. Juicy J - Dark Horse Lorde - Team Magic! - Rude Maroon 5 - Animals Meghan Trainor - All About That Bass Nico & Vinz - Am I Wrong One Direction - Story of My Life Passenger - Let Her Go Pharrell Williams - Happy Pitbull feat. Ke$ha - Timber Sam Smith - stay with me Taylor Swift - Shake It Off Tove Lo - Habits #DJ_Earworm #UnitedStateofPop #Mashups
4:11
DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)
Booking & Email: https://tinyurl.com/Contact-Earworm YouTube Playlist: https://tinyurl.co...
published: 03 Dec 2014
Play in Full Screen
4:28
Do What You Wanna Do
Provided to YouTube by Virgin Music Group Do What You Wanna Do · Devin the Dude The Dude...
published: 23 Jan 2017
Play in Full Screen
3:57
LYRICS - DJ Earworm Mashup - United State of Pop 2014 (Do What You Wanna Do)
Booking & Email: https://tinyurl.com/Contact-Earworm YouTube Playlist: https://tinyurl.co...
published: 18 Dec 2014
Play in Full Screen
3:53
TEP BOPREK "WHAT YOU WANNA DO" MUSIC VIDEO
TEP BOPREK "WHAT YOU WANNA DO" MUSIC VIDEO អរគុណបងប្អូនសូមជួយ subcribe អោយបាន 100K ផងណាចា...
published: 01 Aug 2019
Play in Full Screen
1:54
South Park - You Gotta Do What You Wanna Do
Elementary School Musical
published: 16 Sep 2021
Play in Full Screen
3:09
Do What You Wanna Do | Lyric Video | Elevation Church Kids
Lyric video for "Do What You Wanna Do" from the album, Living Color by Elevation Church Ki...
published: 13 Nov 2020
Play in Full Screen
4:07
Lil Tjay - What You Wanna Do (Official Audio)
Official audio for “What You Wanna Do“ by Lil Tjay. Listen + Download ‘Destined 2 Win’ o...
published: 02 Apr 2021
Play in Full Screen
3:56
Good Will Hunting - "What Do You Wanna Do?"
Scene from "Good Will Hunting"
published: 16 Jan 2011
Play in Full Screen
3:20
Mocca - Do What You Wanna Do (Featuring Kelas Mocca)
Mocca performing 'Do What You Wanna Do'. Listen On JOOX : https://goo.gl/NojVix Listen On...
published: 14 Sep 2015
Play in Full Screen
3:27
Mocca - Do What You Wanna Do (OST Bandhobi / 반두비)
Indonesian band Mocca sings official OST Bandhobi (반두비), a critically acclaimed Korean mov...
published: 11 Jan 2010
Play in Full Screen

Do What You Wanna Do

"Do What You Wanna Do" is the debut, 1977 single by Nassau, Bahamas based group, T-Connection. The single went to #1 on the disco/dance charts for seven weeks. The single made it to #15 on the soul charts and peaked at #46 on the pop chart.

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