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

I Need a Dollar

"I Need a Dollar" is a song performed by Panamanian-American rapper and singer Aloe Blacc. Blacc co-wrote the song with Leon Michels, Nick Movshon and Jeff Dynamite.

It is the intro song for the HBO show How to Make It in America, and was featured as the iTunes Single of the Week. It also featured in the game Fight Night Champion. Blacc has performed the song live on Later... with Jools Holland, The Graham Norton Show, Late Night with Jimmy Fallon, and Conan. In April 2011 it was featured in a commercial for Boost Mobile wireless services.

Music video

Two versions of the video have been released. The first, the "New York" version, features the screen being split in half. The right side shows Blacc singing inside an apartment while the left side shows a man walking through the streets of New York.

The second, the "Las Vegas" version directed by Derek Pike, shows Blacc walking alone along a highway in Nevada, and then hitching a ride to Las Vegas, where he finds a dollar coin on the casino floor, uses it to play a slot machine, and wins.

Podcasts:

  • Angela Hunte x DJ Private Ryan - Middle | The Fizzle Project | Soca 2020 | SGMM

    🔔Subscribe for New Music: https://ffm.link/2024soca 🎧Streaming Playlists: https://ffm.to/islandessentials Buy/Stream here https//smarturl.it/TheFizzleProject Written by Angela Hunte, Kiara Moreno, Urales Vargas Produced by DJ Private Ryan & Borderless Music Additional Production Travis World, DJ Buddha Mixed & Mastered by Keron "Scratchmaster" Hector DJ Private Ryan here Facebook - https//www.facebook.com/Dj-Private-Ryan-319588535404/ Instagram - https//www.instagram.com/djprivateryan Twitter - https//twitter.com/DjPrivateRyan SoundCloud - https//soundcloud.com/djprivateryan Spotify- http//smarturl.it/DJPrivateRyanSpotify Website - http//djprivateryanmusic.com Share your feedback; Like/Dislike, Comment + Share!! ---- Contact us for marketing: ▶Contact | Julianspromos@gmail.com or 1-917-...

    published: 29 Nov 2019
  • DJ Zinc - Since (ft. Angela Hunte).wmv

    published: 20 Feb 2011
  • Epic II: The Album - Out Now - TV Ad

    Available Here: http://smarturl.org/stnqs Never miss a Top Compilation again, subscribe to our channel here: http://smarturl.it/SubTopComps - - - - - - - - - - - - - - Tracklist: CD 1 Muse - Knights Of Cydonia Coldplay - Talk Biffy Clyro - Many Of Horror (When We Collide) Kasabian - Empire Franz Ferdinand - Take Me Out Foster The People - Pumped Up Kicks The Vaccines - Post Break-Up Sex The Wombats - Tokyo (Vampires & Wolves) Everything Everything - MY KZ, UR BF Gorillaz - Dare My Chemical Romance - Sing Mark Ronson & The Business Intl - Bang Bang Bang Lissie - When I'm Alone Hurts - Illuminated Manic Street Preachers Feat. Nina Persson - Your Love Alone Is Not Enough Foals - Miami The Courteeners - Take Over The World Villagers - Becoming a Jackal Athlete - Wires Elbow - Station App...

    published: 21 Mar 2012
  • Summer Workout Hits: The Album - Out Now - TV Ad

    Grab your copy now on iTunes: http://smarturl.it/SummerWorkoutHits?iqid=tvad and Amazon: http://smarturl.it/SummerWorkoutHitsAz?iqid=tvad ‘Summer Workout Hits’ is a 3CD/54 track pop album to soundtrack getting fit for summer and beach body ready. The album includes a massive 21 No. 1s and is packed full of recent Top 10 hits from pop superstars Avicii, Calvin Harris, Ellie Goulding, Pitbull, Robin Thicke, One Republic, David Guetta, Britney Spears, Chris Brown, Little Mix, Pharrell Williams, Rita Ora and many more. Whilst the majority of tracks are the original studio versions to keep the album as pop-tastic as possible, also included are some remixes of tracks from big pop stars like P!nk and Miley Cyrus. Each disc is beat-matched and mixed, starting with some mid-tempo tracks to get ...

    published: 29 May 2014
  • Big gigantic - I need a dollar remix - electric forest 2015

    published: 30 Jun 2015
  • Summer Workout Hits: The Album - Mini DJ Mix Official

    Get Summer Workout Hits now from Amazon: http://smarturl.it/SummerWorkoutHitsAz?iqid=minimix and iTunes: http://smarturl.it/SummerWorkoutHits?iqid=minimix ‘Summer Workout Hits’ is a 3CD/54 track pop album to soundtrack getting fit for summer and beach body ready. The album includes a massive 21 No. 1s and is packed full of recent Top 10 hits from pop superstars Avicii, Calvin Harris, Ellie Goulding, Pitbull, Robin Thicke, One Republic, David Guetta, Britney Spears, Chris Brown, Little Mix, Pharrell Williams, Rita Ora and many more. Whilst the majority of tracks are the original studio versions to keep the album as pop-tastic as possible, also included are some remixes of tracks from big pop stars like P!nk and Miley Cyrus. Each disc is beat-matched and mixed, starting with some mid-te...

    published: 30 May 2014
  • AMI - DOLLAR [Official Audio Visual]

    AMI - DOLLAR [Official Audio Visual] Buy/Listen: http://hyperurl.co/0b7lev ______ Written and Performed By: AMI Produced By: Shaka Pro Visuals by: Michael Anthony ---------- Connect with Michael Anthony of Wileantzpixography : https://www.instagram.com/wileantzpix... https://www.facebook.com/WileAntzPixo... ______ Subscribe to ORIGINAL AMI for more content here: https://www.youtube.com/channel/UCC4XsEp8l0DWlyqW3tWmelg ______ Connect with AMI: Twitter: https://www.twitter.com/originalami_ Instagram: https://www.instagram.com/originalami Facebook: https://www.facebook.com/originalamii _______ Lyrics: My brother Don’t even bother You go see di dollar Bread stackin’ up with cheddar Ou – My brother Don’t even bother You go see di dollar Bread stackin’ with cheddar One time for the n...

    published: 25 Jun 2021
  • Magnetic Man- I Need Air (Album Version)

    http://www.stellarmusia.com Magnetic Man- 'I Need Air' (Original UK Album Version)

    published: 08 Feb 2011
  • Summer Workout Hits: The Album - Out Now - TV Ad

    Pick up your copy of Summer Workout Hits on iTunes: http://smarturl.it/SummerWorkoutHits?IQid=yt.tvad and Amazon: http://smarturl.it/SummerWorkoutHitsAz?IQid=yt.tvad ‘Summer Workout Hits’ is a 3CD/54 track pop album to soundtrack getting fit for summer and beach body ready.The album includes a massive 21 No. 1s and is packed full of recent Top 10 hits from pop superstars Avicii, Calvin Harris, Ellie Goulding, Pitbull, Robin Thicke, One Republic, David Guetta, Britney Spears, Chris Brown, Little Mix, Pharrell Williams, Rita Ora and many more. Whilst the majority of tracks are the original studio versions to keep the album as pop-tastic as possible, also included are some remixes of tracks from big pop stars like P!nk and Miley Cyrus. Each disc is beat-matched and mixed, starting with som...

    published: 27 Jun 2014
  • Patrice Roberts - Mind My Business (Happy Papi Riddim)

    No set of long talk! Drink Water and Mind Yuh Business! Directed & Chopped By Lord Edit Creative Director - Ricardo Drue Camera Operator - Jimelle Henry Stream here 》 https://monk.smmlinkup.com/happypapiriddim [Subscribe] https://tiny.cc/SubscribePatriceRMusic | [Follow] https://Instagram.com/patriceroberts1 Follow Patrice Roberts: Artiste | Singer | Performer | Model | Entertainer Instagram: https://Instagram.com/patriceroberts1 Facebook: https://Facebook.com/PatriceRMusic Youtube: http://Youtube.com/c/PatriceRMusic Twitter: https://Twitter.com/patricermusic Bookings: bookpatriceroberts@gmail.com

    published: 01 Jan 2022
developed with YouTube
Angela Hunte x DJ Private Ryan - Middle | The Fizzle Project | Soca 2020 | SGMM
2:46

Angela Hunte x DJ Private Ryan - Middle | The Fizzle Project | Soca 2020 | SGMM

  • Order:
  • Duration: 2:46
  • Uploaded Date: 29 Nov 2019
  • views: 95988
🔔Subscribe for New Music: https://ffm.link/2024soca 🎧Streaming Playlists: https://ffm.to/islandessentials Buy/Stream here https//smarturl.it/TheFizzleProject Written by Angela Hunte, Kiara Moreno, Urales Vargas Produced by DJ Private Ryan & Borderless Music Additional Production Travis World, DJ Buddha Mixed & Mastered by Keron "Scratchmaster" Hector DJ Private Ryan here Facebook - https//www.facebook.com/Dj-Private-Ryan-319588535404/ Instagram - https//www.instagram.com/djprivateryan Twitter - https//twitter.com/DjPrivateRyan SoundCloud - https//soundcloud.com/djprivateryan Spotify- http//smarturl.it/DJPrivateRyanSpotify Website - http//djprivateryanmusic.com Share your feedback; Like/Dislike, Comment + Share!! ---- Contact us for marketing: ▶Contact | Julianspromos@gmail.com or 1-917-767-6284 ▶Instagram | https://Instagram.com/Julianspromos ▶Mailing List | https://ffm.link/mailinglist ▶Web | https://julianspromos.com ▶Note: We have permission from all content owners to feature this on our channel. YouTube Channel Powered by ONErpm + Julianspromos LLC #JULIANSPROMOS #SOCA #SUBSCRIBE
https://wn.com/Angela_Hunte_X_Dj_Private_Ryan_Middle_|_The_Fizzle_Project_|_Soca_2020_|_Sgmm
DJ Zinc - Since (ft. Angela Hunte).wmv
3:24

DJ Zinc - Since (ft. Angela Hunte).wmv

  • Order:
  • Duration: 3:24
  • Uploaded Date: 20 Feb 2011
  • views: 3775
https://wn.com/Dj_Zinc_Since_(Ft._Angela_Hunte).Wmv
Epic II: The Album - Out Now - TV Ad
0:31

Epic II: The Album - Out Now - TV Ad

  • Order:
  • Duration: 0:31
  • Uploaded Date: 21 Mar 2012
  • views: 995
Available Here: http://smarturl.org/stnqs Never miss a Top Compilation again, subscribe to our channel here: http://smarturl.it/SubTopComps - - - - - - - - - - - - - - Tracklist: CD 1 Muse - Knights Of Cydonia Coldplay - Talk Biffy Clyro - Many Of Horror (When We Collide) Kasabian - Empire Franz Ferdinand - Take Me Out Foster The People - Pumped Up Kicks The Vaccines - Post Break-Up Sex The Wombats - Tokyo (Vampires & Wolves) Everything Everything - MY KZ, UR BF Gorillaz - Dare My Chemical Romance - Sing Mark Ronson & The Business Intl - Bang Bang Bang Lissie - When I'm Alone Hurts - Illuminated Manic Street Preachers Feat. Nina Persson - Your Love Alone Is Not Enough Foals - Miami The Courteeners - Take Over The World Villagers - Becoming a Jackal Athlete - Wires Elbow - Station Approach CD 2 Aloe Blacc - I Need A Dollar Noah And The Whale - L.I.F.E.G.O.E.S.O.N. Plan B - She Said Paolo Nutini - New Shoes Ellie Goulding - Starry Eyed Paloma Faith - Upside Down Hard-Fi - Hard To Beat MGMT - Time To Pretend Doves - Black And White Town The Kooks - Naive 13 Senses - Into The Fire The Dandy Warhols - Every Day Should Be A Holiday Black Rebel Motorcycle Club - Spread Your Love Primal Scream - Movin' On Up Radiohead - Just Supergrass - Moving Depeche Mode - Never Let Me Down Again The Stone Roses - Waterfall Embrace - One Big Family Blur - Girls And Boys CD 3 Calvin Harris Feat. Kelis - Bounce Example - Kickstarts Swedish House Mafia Feat. Pharrell - One (Your Name) The Chemical Brothers - Swoon The Prodigy - Invaders Must Die Pendulum - Watercolour Katy B - Katy On A Mission Magnetic Man Feat. Angela Hunte - I Need Air Groove Armada - Superstylin' Empire Of The Sun - We Are The People Eric Prydz - Pjanoo Justice Vs Simian - We Are Your Friends LCD Soundsystem - Daft Punk Is Playing At My House Miike Snow - Animal Hot Chip - Ready For The Floor Royksopp - Poor Leno Moby - Extreme Ways Faithless - We Come 1 New Order - Blue Monday '88 Fatboy Slim - Praise You
https://wn.com/Epic_Ii_The_Album_Out_Now_Tv_Ad
Summer Workout Hits: The Album - Out Now - TV Ad
0:31

Summer Workout Hits: The Album - Out Now - TV Ad

  • Order:
  • Duration: 0:31
  • Uploaded Date: 29 May 2014
  • views: 13231
Grab your copy now on iTunes: http://smarturl.it/SummerWorkoutHits?iqid=tvad and Amazon: http://smarturl.it/SummerWorkoutHitsAz?iqid=tvad ‘Summer Workout Hits’ is a 3CD/54 track pop album to soundtrack getting fit for summer and beach body ready. The album includes a massive 21 No. 1s and is packed full of recent Top 10 hits from pop superstars Avicii, Calvin Harris, Ellie Goulding, Pitbull, Robin Thicke, One Republic, David Guetta, Britney Spears, Chris Brown, Little Mix, Pharrell Williams, Rita Ora and many more. Whilst the majority of tracks are the original studio versions to keep the album as pop-tastic as possible, also included are some remixes of tracks from big pop stars like P!nk and Miley Cyrus. Each disc is beat-matched and mixed, starting with some mid-tempo tracks to get the blood flowing, before getting those pulses racing with up-tempo pop and dance songs and then finishing with a few tracks to warm down to, include the huge recent No. 1 from Mr Probz. For more information visit: http://www.topcompilations.com Never miss a Top Compilation again, subscribe to our channel here: http://smarturl.it/SubTopComps -------------------- Tracklisting: CD 1 HIT THE GROUND RUNNING 1. Rita Ora - I Will Never Let You Down 2. Pharrell Williams - Happy 3. Avicii - Wake Me Up 4. Pitbull Feat. Ke$ha - Timber 5. OneRepublic - Counting Stars 6. Ellie Goulding - Burn 7. Rudimental Feat. Ella Eyre - Waiting All Night 8. Olly Murs Feat. Flo Rida - Troublemaker 9. Little Mix - Move 10. Calvin Harris & Alesso Feat. Hurts - Under Control 11. Lana Del Rey & Cedric Gervais - Summertime Sadness (Cedric Gervais Remix) 12. Britney Spears - Work B**ch 13. P!nk - Blow Me (One Last Kiss) (Firebeatz Club Mix) 14. Swedish House Mafia Feat. John Martin - Don't You Worry Child 15. Icona Pop Feat. Charli XCX - I Love It 16. Labrinth Feat. Tinie Tempah - Earthquake 17. Disclosure Feat. AlunaGeorge - White Noise 18. Mr. Probz - Waves (Robin Schulz Radio Edit) CD 2 BEACH BODY CONDITIONING 1. Robin Thicke Feat. Pharrell - Blurred Lines (No Rap Version) 2. Chris Brown - Turn Up The Music 3. Aloe Blacc - I Need A Dollar (Zinc Remix) 4. DJ Cassidy Feat. Robin Thicke & Jessie J - Calling All Hearts 5. Usher Feat. Pitbull - DJ Got Us Fallin' In Love 6. Ke$ha - Die Young 7. Miley Cyrus Vs. Cedric Gervais - Adore You (Remix) 8. Foxes - Let Go For Tonight 9. Sam And The Womp - Bom Bom 10. Wiley Feat. Ms D - Heatwave 11. JLS - The Club Is Alive 12. Karmin -- Brokenhearted 13. Alexis Jordan - Happiness 14. Amelia Lily - You Bring Me Joy 15. Faul & Wad Ad Vs. Pnau -- Changes 16. Paloma Faith - Can't Rely On You 17. Le Youth Feat. Dominique Young Unique - Dance With Me 18. Katy B - Crying For No Reason CD 3 ONE LAST PUSH 1. Duke Dumont Feat. A*M*E - Need U (100%) 2. Storm Queen - Look Right Through (MK Vocal Edit) 3. DJ Fresh Vs Jay Fay Feat. Ms Dynamite - Dibby Dibby Sound 4. DVBBS & Borgeous Feat. Tinie Tempah - Tsunami (Jump) 5. Neon Jungle - Welcome To The Jungle 6. Leona Lewis / Avicii - Collide 7. Bingo Players - Rattle 8. Martin Garrix - Animals 9. Example - Kids Again 10. Breach Feat. Andreya Triana - Everything You Never Had (We Had It All) 11. Porter Robinson - Language 12. Kaskade & Project 46 - Last Chance 13. Style Of Eye Feat. Soso - Kids 14. Alexandra Burke Feat. Erick Morillo - Elephant 15. Madeon - Icarus 16. DJ Snake & Lil Jon - Turn Down For What 17. Magnetic Man Feat. Angela Hunte - I Need Air 18. Wilkinson - Afterglow
https://wn.com/Summer_Workout_Hits_The_Album_Out_Now_Tv_Ad
Big gigantic - I need a dollar remix - electric forest 2015
2:29

Big gigantic - I need a dollar remix - electric forest 2015

  • Order:
  • Duration: 2:29
  • Uploaded Date: 30 Jun 2015
  • views: 39
https://wn.com/Big_Gigantic_I_Need_A_Dollar_Remix_Electric_Forest_2015
Summer Workout Hits: The Album - Mini DJ Mix Official
13:15

Summer Workout Hits: The Album - Mini DJ Mix Official

  • Order:
  • Duration: 13:15
  • Uploaded Date: 30 May 2014
  • views: 385790
Get Summer Workout Hits now from Amazon: http://smarturl.it/SummerWorkoutHitsAz?iqid=minimix and iTunes: http://smarturl.it/SummerWorkoutHits?iqid=minimix ‘Summer Workout Hits’ is a 3CD/54 track pop album to soundtrack getting fit for summer and beach body ready. The album includes a massive 21 No. 1s and is packed full of recent Top 10 hits from pop superstars Avicii, Calvin Harris, Ellie Goulding, Pitbull, Robin Thicke, One Republic, David Guetta, Britney Spears, Chris Brown, Little Mix, Pharrell Williams, Rita Ora and many more. Whilst the majority of tracks are the original studio versions to keep the album as pop-tastic as possible, also included are some remixes of tracks from big pop stars like P!nk and Miley Cyrus. Each disc is beat-matched and mixed, starting with some mid-tempo tracks to get the blood flowing, before getting those pulses racing with up-tempo pop and dance songs and then finishing with a few tracks to warm down to, include the huge recent No. 1 from Mr Probz. For more information visit: http://www.topcompilations.com Never miss a Top Compilation again, subscribe to our channel here: http://smarturl.it/SubTopComps ----------------------------------- Tracklisting: CD 1 HIT THE GROUND RUNNING 1. Rita Ora - I Will Never Let You Down 2. Pharrell Williams - Happy 3. Avicii - Wake Me Up 4. Pitbull Feat. Ke$ha - Timber 5. OneRepublic - Counting Stars 6. Ellie Goulding - Burn 7. Rudimental Feat. Ella Eyre - Waiting All Night 8. Olly Murs Feat. Flo Rida - Troublemaker 9. Little Mix - Move 10. Calvin Harris & Alesso Feat. Hurts - Under Control 11. Lana Del Rey & Cedric Gervais - Summertime Sadness (Cedric Gervais Remix) 12. Britney Spears - Work B**ch 13. P!nk - Blow Me (One Last Kiss) (Firebeatz Club Mix) 14. Swedish House Mafia Feat. John Martin - Don't You Worry Child 15. Icona Pop Feat. Charli XCX - I Love It 16. Labrinth Feat. Tinie Tempah - Earthquake 17. Disclosure Feat. AlunaGeorge - White Noise 18. Mr. Probz - Waves (Robin Schulz Radio Edit) CD 2 BEACH BODY CONDITIONING 1. Robin Thicke Feat. Pharrell - Blurred Lines (No Rap Version) 2. Chris Brown - Turn Up The Music 3. Aloe Blacc - I Need A Dollar (Zinc Remix) 4. DJ Cassidy Feat. Robin Thicke & Jessie J - Calling All Hearts 5. Usher Feat. Pitbull - DJ Got Us Fallin' In Love 6. Ke$ha - Die Young 7. Miley Cyrus Vs. Cedric Gervais - Adore You (Remix) 8. Foxes - Let Go For Tonight 9. Sam And The Womp - Bom Bom 10. Wiley Feat. Ms D - Heatwave 11. JLS - The Club Is Alive 12. Karmin - Brokenhearted 13. Alexis Jordan - Happiness 14. Amelia Lily - You Bring Me Joy 15. Faul & Wad Ad Vs. Pnau -- Changes 16. Paloma Faith - Can't Rely On You 17. Le Youth Feat. Dominique Young Unique - Dance With Me 18. Katy B - Crying For No Reason CD 3 ONE LAST PUSH 1. Duke Dumont Feat. A*M*E - Need U (100%) 2. Storm Queen - Look Right Through (MK Vocal Edit) 3. DJ Fresh Vs Jay Fay Feat. Ms Dynamite - Dibby Dibby Sound 4. DVBBS & Borgeous Feat. Tinie Tempah - Tsunami (Jump) 5. Neon Jungle - Welcome To The Jungle 6. Leona Lewis / Avicii - Collide 7. Bingo Players - Rattle 8. Martin Garrix - Animals 9. Example - Kids Again 10. Breach Feat. Andreya Triana - Everything You Never Had (We Had It All) 11. Porter Robinson - Language 12. Kaskade & Project 46 - Last Chance 13. Style Of Eye Feat. Soso - Kids 14. Alexandra Burke Feat. Erick Morillo - Elephant 15. Madeon - Icarus 16. DJ Snake & Lil Jon - Turn Down For What 17. Magnetic Man Feat. Angela Hunte - I Need Air 18. Wilkinson - Afterglow
https://wn.com/Summer_Workout_Hits_The_Album_Mini_Dj_Mix_Official
AMI - DOLLAR [Official Audio Visual]
2:29

AMI - DOLLAR [Official Audio Visual]

  • Order:
  • Duration: 2:29
  • Uploaded Date: 25 Jun 2021
  • views: 2809
AMI - DOLLAR [Official Audio Visual] Buy/Listen: http://hyperurl.co/0b7lev ______ Written and Performed By: AMI Produced By: Shaka Pro Visuals by: Michael Anthony ---------- Connect with Michael Anthony of Wileantzpixography : https://www.instagram.com/wileantzpix... https://www.facebook.com/WileAntzPixo... ______ Subscribe to ORIGINAL AMI for more content here: https://www.youtube.com/channel/UCC4XsEp8l0DWlyqW3tWmelg ______ Connect with AMI: Twitter: https://www.twitter.com/originalami_ Instagram: https://www.instagram.com/originalami Facebook: https://www.facebook.com/originalamii _______ Lyrics: My brother Don’t even bother You go see di dollar Bread stackin’ up with cheddar Ou – My brother Don’t even bother You go see di dollar Bread stackin’ with cheddar One time for the nation Blessings flowin’ down in abundance Mi affi thank God fi di guidance Now dis is your time you fi shine now One time for the nation Freedom for your time in di dungeon No shackles no longer fi hold dung Step out and run out to your freedom One time for the nation My brother Don’t even bother You go see di dollar Bread stackin’ up with cheddar Ou – My brother Don’t even bother You go see di dollar Bread stackin’ with cheddar One time for the nation You been sad you been low low Tellin’ all your dreams no no Runnnin’ right through the door door Like ou nah - ou nah I just want you to know know Your time is coming sure sure Just hold on a little longer Come through – it must come through My brother Don’t even bother You go see di dollar Bread stackin’ up with cheddar Ou – My brother Don’t even bother You go see di dollar Bread stackin’ with cheddar My brother Don’t even bother You go see di dollar Bread stackin’ up with cheddar Ou – My brother Don’t even bother You go see di dollar Bread stackin’ with cheddar One time for the nation
https://wn.com/Ami_Dollar_Official_Audio_Visual
Magnetic Man- I Need Air (Album Version)
4:20

Magnetic Man- I Need Air (Album Version)

  • Order:
  • Duration: 4:20
  • Uploaded Date: 08 Feb 2011
  • views: 51248
http://www.stellarmusia.com Magnetic Man- 'I Need Air' (Original UK Album Version)
https://wn.com/Magnetic_Man_I_Need_Air_(Album_Version)
Summer Workout Hits: The Album - Out Now - TV Ad
0:20

Summer Workout Hits: The Album - Out Now - TV Ad

  • Order:
  • Duration: 0:20
  • Uploaded Date: 27 Jun 2014
  • views: 2636
Pick up your copy of Summer Workout Hits on iTunes: http://smarturl.it/SummerWorkoutHits?IQid=yt.tvad and Amazon: http://smarturl.it/SummerWorkoutHitsAz?IQid=yt.tvad ‘Summer Workout Hits’ is a 3CD/54 track pop album to soundtrack getting fit for summer and beach body ready.The album includes a massive 21 No. 1s and is packed full of recent Top 10 hits from pop superstars Avicii, Calvin Harris, Ellie Goulding, Pitbull, Robin Thicke, One Republic, David Guetta, Britney Spears, Chris Brown, Little Mix, Pharrell Williams, Rita Ora and many more. Whilst the majority of tracks are the original studio versions to keep the album as pop-tastic as possible, also included are some remixes of tracks from big pop stars like P!nk and Miley Cyrus. Each disc is beat-matched and mixed, starting with some mid-tempo tracks to get the blood flowing, before getting those pulses racing with up-tempo pop and dance songs and then finishing with a few tracks to warm down to, include the huge recent No. 1 from Mr Probz. For more information visit: http://www.topcompilations.com Never miss a Top Compilation again, subscribe to our channel here: http://smarturl.it/SubTopComps - - - - - - - - - - - - - - - - - - - - Tracklisting: CD 1 1. I Will Never Let You Down - RITA ORA 2. Happy (From Despicable Me 2) - Pharrell Williams 3. Wake Me Up - Avicii 4. Timber - Pitbull feat. Ke$ha 5. Counting Stars - OneRepublic 6. Burn - Ellie Goulding 7. Waiting All Night - Rudimental feat. Ella Eyre 8. Troublemaker - Olly Murs feat. Flo Rida 9. Move - Little Mix 10. Under Control - Calvin Harris & Alesso feat. Hurts 11. Summertime Sadness - Lana Del Rey 12. Work B**ch - Britney Spears 13. Blow Me (One Last Kiss) - P!nk 14. Don't You Worry Child - Swedish House Mafia feat. John Martin 15. I Love It - Icona Pop feat. Charli XCX 16. Earthquake - Labrinth feat. Tinie Tempah 17. White Noise - Disclosure feat. AlunaGeorge 18. Waves - Mr. Probz CD 2 1. Blurred Lines - Robin Thicke feat. Pharrell 2. Turn Up the Music - Chris Brown 3. I Need a Dollar - Aloe Blacc 4. Calling All Hearts - DJ Cassidy feat. Robin Thicke & Jessie J 5. DJ Got Us Fallin' in Love - Usher feat. Pitbull, Shellback, Max Martin 6. Die Young - Ke$ha 7. Adore You - Miley Cyrus vs. Cedric Gervais 8. Let Go for Tonight - Foxes 9. Bom Bom - Sam and the Womp 10. Heatwave - Wiley feat. Ms D 11. The Club Is Alive - JLS 12. Brokenhearted - Karmin 13. Happiness - deadmau5, Alexis Jordan 14. You Bring Me Joy - Amelia Lily 15. Changes - Faul & Wad Ad vs. Pnau 16. Can't Rely on You - Paloma Faith 17. Dance with Me - Le Youth feat. Dominique Young Unique 18. Crying for No Reason - Katy B CD 3 1. Need U (100%) - Duke Dumont feat. A*M*E 2. Look Right Through - Storm Queen 3. Dibby Dibby Sound - DJ Fresh vs Jay Fay feat. Ms Dynamite 4. Tsunami (Jump) - DVBBS & Borgeous feat. Tinie Tempah 5. Welcome to the Jungle - Neon Jungle 6. Collide - Leona Lewis / Avicii 7. Rattle - Bingo Players 8. Animals - Martin Garrix 9. Kids Again - Example 10. Everything You Never Had (We Had It All) - Breach feat. Andreya Triana 11. Language - Porter Robinson 12. Last Chance - Kaskade & Project 46 13. Kids - Style Of Eye feat. Soso 14. Elephant - Alexandra Burke feat. Erick Morillo 15. Icarus - Madeon 16. Turn Down for What - DJ Snake & Lil Jon 17. I Need Air - Magnetic Man feat. Angela Hunte 18. Afterglow - Wilkinson
https://wn.com/Summer_Workout_Hits_The_Album_Out_Now_Tv_Ad
Patrice Roberts - Mind My Business (Happy Papi Riddim)
2:02

Patrice Roberts - Mind My Business (Happy Papi Riddim)

  • Order:
  • Duration: 2:02
  • Uploaded Date: 01 Jan 2022
  • views: 13245600
No set of long talk! Drink Water and Mind Yuh Business! Directed & Chopped By Lord Edit Creative Director - Ricardo Drue Camera Operator - Jimelle Henry Stream here 》 https://monk.smmlinkup.com/happypapiriddim [Subscribe] https://tiny.cc/SubscribePatriceRMusic | [Follow] https://Instagram.com/patriceroberts1 Follow Patrice Roberts: Artiste | Singer | Performer | Model | Entertainer Instagram: https://Instagram.com/patriceroberts1 Facebook: https://Facebook.com/PatriceRMusic Youtube: http://Youtube.com/c/PatriceRMusic Twitter: https://Twitter.com/patricermusic Bookings: bookpatriceroberts@gmail.com
https://wn.com/Patrice_Roberts_Mind_My_Business_(Happy_Papi_Riddim)
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Angela Hunte x DJ Private Ryan - Middle | The Fizzle Project | Soca 2020 | SGMM
    2:46
    Angela Hunte x DJ Private Ryan - Middle | The Fizzle Project | Soca 2020 | SGMMremove from playlist
  • Epic II: The Album - Out Now - TV Ad
    0:31
    Epic II: The Album - Out Now - TV Adremove from playlist
  • Summer Workout Hits: The Album - Out Now - TV Ad
    0:31
    Summer Workout Hits: The Album - Out Now - TV Adremove from playlist
  • Summer Workout Hits: The Album - Mini DJ Mix Official
    13:15
    Summer Workout Hits: The Album - Mini DJ Mix Officialremove from playlist
  • AMI - DOLLAR [Official Audio Visual]
    2:29
    AMI - DOLLAR [Official Audio Visual]remove from playlist
  • Magnetic Man- I Need Air (Album Version)
    4:20
    Magnetic Man- I Need Air (Album Version)remove from playlist
  • Summer Workout Hits: The Album - Out Now - TV Ad
    0:20
    Summer Workout Hits: The Album - Out Now - TV Adremove from playlist
  • Patrice Roberts - Mind My Business (Happy Papi Riddim)
    2:02
    Patrice Roberts - Mind My Business (Happy Papi Riddim)remove from playlist
developed with YouTube
PLAYLIST TIME:

Angela Hunte x DJ Private Ryan - Middle | The Fizzle Project | Soca 2020 | SGMM

🔔Subscribe for New Music: https://ffm.link/2024soca 🎧Streaming Playlists: https://ffm.to/islandessentials Buy/Stream here https//smarturl.it/TheFizzleProject Written by Angela Hunte, Kiara Moreno, Urales Vargas Produced by DJ Private Ryan & Borderless Music Additional Production Travis World, DJ Buddha Mixed & Mastered by Keron "Scratchmaster" Hector DJ Private Ryan here Facebook - https//www.facebook.com/Dj-Private-Ryan-319588535404/ Instagram - https//www.instagram.com/djprivateryan Twitter - https//twitter.com/DjPrivateRyan SoundCloud - https//soundcloud.com/djprivateryan Spotify- http//smarturl.it/DJPrivateRyanSpotify Website - http//djprivateryanmusic.com Share your feedback; Like/Dislike, Comment + Share!! ---- Contact us for marketing: ▶Contact | Julianspromos@gmail.com or 1-917-767-6284 ▶Instagram | https://Instagram.com/Julianspromos ▶Mailing List | https://ffm.link/mailinglist ▶Web | https://julianspromos.com ▶Note: We have permission from all content owners to feature this on our channel. YouTube Channel Powered by ONErpm + Julianspromos LLC #JULIANSPROMOS #SOCA #SUBSCRIBE
2:46
Angela Hunte x DJ Private Ryan - Middle | The Fizzle Project | Soca 2020 | SGMM
🔔Subscribe for New Music: https://ffm.link/2024soca 🎧Streaming Playlists: https://ffm.to/i...
published: 29 Nov 2019
Play in Full Screen
3:24
DJ Zinc - Since (ft. Angela Hunte).wmv
published: 20 Feb 2011
Play in Full Screen
0:31
Epic II: The Album - Out Now - TV Ad
Available Here: http://smarturl.org/stnqs Never miss a Top Compilation again, subscribe t...
published: 21 Mar 2012
Play in Full Screen
0:31
Summer Workout Hits: The Album - Out Now - TV Ad
Grab your copy now on iTunes: http://smarturl.it/SummerWorkoutHits?iqid=tvad and Amazon: h...
published: 29 May 2014
Play in Full Screen
2:29
Big gigantic - I need a dollar remix - electric forest 2015
published: 30 Jun 2015
Play in Full Screen
13:15
Summer Workout Hits: The Album - Mini DJ Mix Official
Get Summer Workout Hits now from Amazon: http://smarturl.it/SummerWorkoutHitsAz?iqid=minim...
published: 30 May 2014
Play in Full Screen
2:29
AMI - DOLLAR [Official Audio Visual]
AMI - DOLLAR [Official Audio Visual] Buy/Listen: http://hyperurl.co/0b7lev ______ Writt...
published: 25 Jun 2021
Play in Full Screen
4:20
Magnetic Man- I Need Air (Album Version)
http://www.stellarmusia.com Magnetic Man- 'I Need Air' (Original UK Album Version)
published: 08 Feb 2011
Play in Full Screen
0:20
Summer Workout Hits: The Album - Out Now - TV Ad
Pick up your copy of Summer Workout Hits on iTunes: http://smarturl.it/SummerWorkoutHits?...
published: 27 Jun 2014
Play in Full Screen
2:02
Patrice Roberts - Mind My Business (Happy Papi Riddim)
No set of long talk! Drink Water and Mind Yuh Business! Directed & Chopped By Lord Edit C...
published: 01 Jan 2022
Play in Full Screen

I Need a Dollar

"I Need a Dollar" is a song performed by Panamanian-American rapper and singer Aloe Blacc. Blacc co-wrote the song with Leon Michels, Nick Movshon and Jeff Dynamite.

It is the intro song for the HBO show How to Make It in America, and was featured as the iTunes Single of the Week. It also featured in the game Fight Night Champion. Blacc has performed the song live on Later... with Jools Holland, The Graham Norton Show, Late Night with Jimmy Fallon, and Conan. In April 2011 it was featured in a commercial for Boost Mobile wireless services.

Music video

Two versions of the video have been released. The first, the "New York" version, features the screen being split in half. The right side shows Blacc singing inside an apartment while the left side shows a man walking through the streets of New York.

The second, the "Las Vegas" version directed by Derek Pike, shows Blacc walking alone along a highway in Nevada, and then hitching a ride to Las Vegas, where he finds a dollar coin on the casino floor, uses it to play a slot machine, and wins.

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