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

50 Cent

Curtis James Jackson III (born July 6, 1975), better known by his stage name 50 Cent, is an American rapper, actor, entrepreneur, investor, record, film, and television producer. Born in the South Jamaica neighborhood of the borough of Queens, Jackson began selling drugs at age twelve during the 1980s crack epidemic. Although he left drug-dealing to pursue a musical career, he was struck by nine bullets in a 2000 shooting. After Jackson released the compilation album Guess Who's Back? in 2002, he was discovered by Eminem and signed by Shady Records, Aftermath Entertainment and Interscope Records.

With the aid of Eminem and Dr. Dre (who produced his first major-label album, Get Rich or Die Tryin'), Jackson became one of the world's best selling rappers and rose to prominence with East Coast hip hop group G-Unit (which he leads de facto). In 2003 he founded G-Unit Records, signing his G-Unit associates Young Buck, Lloyd Banks and Tony Yayo. Jackson had similar commercial and critical success with his second album, The Massacre, which was released in 2005. He released his fifth studio album, Animal Ambition, in 2014 and is working on his sixth studio album: Street King Immortal, scheduled for release in 2016.

50 Cent (disambiguation)

50 Cent is an American rapper; 50 Cent may also refer to:

  • Kelvin Martin, a criminal from the Bronx, New York known as 50 cent
  • 50 Cent Party, a group of Chinese netizens paid by the Chinese government to promote the policies of the Communist Party of China
  • 50 CENT, a song by Dean Blunt taken from Black Metal, an album released on Rough Trade Records
  • See also

  • 50 cents, coins valued at 50 cents in decimal currency systems
  • Podcasts:

    50 Cent

    ALBUMS

    • 50 Cent - In Da Club (Official Music Video)

      CELEBRATING ONE BILLION VIEWS!! REMASTERED IN HD! UP TO 4K!! Get your 50 Cent & G-Unit Merch here: https://www.gunitbrands.com/ Best Of: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Music video by 50 Cent performing In Da Club. (C) 2003 Shady Records/Aftermath Records/Interscope Records #50Cent #InDaClub #Remastered #BransonCognac #LeCheminDuRoi #GUnit #PowerTV #ForLife #ThisIs50 #BillionViewsClub

      published: 16 Jun 2009
    • 50 Cent on Diddy/Jay-Z Allegations & Real Reason for Drake’s Lawsuit

      YERRRR, we had to get the GOAT on to discuss what's going on with Diddy, unpack the Jay Z allegations, and breakdown what is happening with Drake and Kendrick, and why Drake is suing. We get to all that, and much much more this week on Flagrant with 50 Cent. INDULGE 00:00 50 Cent ran Alexx off his corners + MSG appearance 1:42 Kendrick, Katt and Jamie Foxx + Comedians are invincible 4:28 Is Jamie the most talented person ever? Puffy Marketing 5:24 Latest with Diddy? Meek went shopping + 50 didn't 9:59 Jay-Z's lawsuit + Issue with Jay-Z? Competitiveness 18:28 Is 50 Nostradamus? Always the outside 21:21 Understanding human nature + Leverage 29:52 "How to Rob" 34:59 Akaash keeps it real + Whoo Kid honesty 37:06 J-Lo & Nas + Irv Gotti interference 41:35 Biggest debut in Hip Hop + He lived it ...

      published: 16 Dec 2024
    • 50 Cent - Candy Shop (Official Music Video) ft. Olivia

      REMASTERED IN HD! Official Music Video for Candy Shop performed by 50 Cent (ft. Olivia). Best of: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Follow 50 Cent Instagram: https://www.instagram.com/50cent Twitter: https://twitter.com/50cent Facebook: https://en-gb.facebook.com/50cent TikTok: https://www.tiktok.com/@50cent (C) 2005 Shady Records/Aftermath Records/Interscope Records #50Cent #Olivia #CandyShop #Remastered

      published: 16 Jun 2009
    • 50 Cent Clowns Jay-Z and Diddy’s “Billionaire Brunch” Moment 😂

      50 Cent delivers his signature humor as he reacts to Jay-Z’s latest lawsuit and his connection with Puff Daddy. From poking fun at Jay-Z and Diddy’s “billionaire brunch” vibes to sarcastically applauding their “united we stand” moment, 50 Cent holds nothing back. Watch the full video for 50’s hilarious take on Jay and Diddy’s relationship, the ongoing lawsuit drama, and his unique perspective on “Black excellence” in the industry.

      published: 27 Dec 2024
    • 50 Cent - Many Men (Wish Death) (Dirty Version)

      REMASTERED IN HD! Official Music Video for Many Men (Wish Death) performed by 50 Cent. Best of: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Follow 50 Cent: Instagram: https://www.instagram.com/50cent Twitter: https://twitter.com/50cent Facebook: https://en-gb.facebook.com/50cent TikTok: https://www.tiktok.com/@50cent (C) 2003 Shady Records/Aftermath Records/Interscope Records #50Cent #ManyMen #GetRichOrDyeTryin

      published: 16 Jun 2009
    • 50 Cent - P.I.M.P. (Snoop Dogg Remix) ft. Snoop Dogg, G-Unit

      REMASTERED IN HD! Best of 50 Cent: https://goo.gl/PgrRic Subscribe here: https://goo.gl/o954jF Music video by 50 Cent performing P.I.M.P.. (C) 2003 Shady Records/Aftermath Records/Interscope Records #50Cent #PIMP #Remastered #SnoopDogg

      published: 16 Jun 2009
    • 50 Cent - Baby By Me (Official Music Video) ft. Ne-Yo

      Official music video for 50 Cent's "Baby By Me" from the album, Before I Self-Desctruct. Remastered in HD! ► Create a YouTube Short using this song! Tap the 'Shorts Remix' button above to use "Baby By Me" in your YouTube Short. ► Listen to the "Baby By Me" Benny Bennassi Remix: https://www.youtube.com/watch?v=o-F3U9pN7NI Watch more 50 Cent videos: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Follow 50 Cent: https://www.instagram.com/50cent https://www.facebook.com/50cent/ https://twitter.com/50cent Music video by 50 Cent performing Baby By Me. (C) 2009 Shady Records/Aftermath Records/Interscope Records #50Cent #BabyByMe #Remastered

      published: 24 Nov 2009
    • 50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game | 2025

      50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game (Remix) 2025 | Prod. Profetesa Missionary - A Short Film ft. Snoop Dogg & Dr. Dre https://youtu.be/Ho5iOnGcWas Snoop Dogg & Dr. Dre New Album "Missionary" Out Now: https://snoopdogg.lnk.to/Missionary Support Golden Age Hip Hop 📷 Instagram: https://www.instagram.com/westcoast.90s/ 🎵 90s Hip Hop Playlist: https://www.youtube.com/playlist?list=PLCk9xy9nZ8GaR77HEbW6kmh99lpyh7yM1 🎧 Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Beat by Profetesa Beats 💰 Purchase This Beat: https://www.beatstars.com/profetesabeats 📷 Instagram: https://www.instagram.com/profetesa_rap_beats/ 💌 Contact: info@profetesa-beats.com ___________ Follow Snoop Dogg Instagram: http://instagram.com/snoopdogg Facebook: http://facebook.com/snoopdogg...

      published: 07 Jan 2025
    • "I've Made Some Mistakes, Just Not That One" - 50 Cent Touts His Celibate, Unmarried Lifestyle

      Emmy and GRAMMY-winning rapper, producer and entrepreneur Curtis "50 Cent" Jackson tells Stephen he loves not being married, and explains why he's currently abstaining from sex. Stick around for more with 50 Cent and check out his debut novel, "The Accomplice," available now. #Colbert #StephenColbert #50Cent #CurtisJackson #Music #HipHop #NewYork #Celibacy Subscribe To "The Late Show" Channel: http://bit.ly/ColbertYouTube Watch full episodes of "The Late Show": http://bit.ly/1Puei40 Listen to "The Late Show Pod Show" podcast: https://link.chtbl.com/Awagtx95?sid=yt Like "The Late Show" on Facebook: http://on.fb.me/1df139Y Follow "The Late Show" on X: http://bit.ly/1dMzZzG Follow "The Late Show" on Instagram: http://bit.ly/29wfREj Watch The Late Show with Stephen Colbert weeknights at 11...

      published: 05 Sep 2024
    • 50 CENT Greatest Hits Full Album 2023 - Best Songs Of 50 CENT - HIP HOP OLD SCHOOL MIX

      🎶 Listen to the best hip hop, rap and trap hits with the hottest mixes and the latest songs at HIP HOP MIX. 🎶Explore playlists and mixes for new artists or your favorites, or even search for a song you want to listen to. Thanks for watching! Don't forget to SUBCRIBE, Like & Share my video if you like it! Happy listening! 💕💕💕 https://s.net.vn/7QHe Playlist: https://s.net.vn/pN0m #hiphop #hiphop2023 #hiphopmix Tags: 90s hip hop, 90s hip hop mix, 90s rap music hits playlist, old school hip hop, 90's rap songs, ,90's hip hop mix, hip hop classics, 90's hip hop songs, old school rap, classic hip hop, best of 90's hip hop, throwback hip hop, old school hip hop mix, classic hip hop mix, old school hip hop mix 90's hip hop classic hits, hip hop das antigas, greatest 90's rap songs, hip hop work...

      published: 06 Jul 2023
    developed with YouTube
    50 Cent - In Da Club (Official Music Video)
    4:08

    50 Cent - In Da Club (Official Music Video)

    • Order:
    • Duration: 4:08
    • Uploaded Date: 16 Jun 2009
    • views: 2266303393
    CELEBRATING ONE BILLION VIEWS!! REMASTERED IN HD! UP TO 4K!! Get your 50 Cent & G-Unit Merch here: https://www.gunitbrands.com/ Best Of: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Music video by 50 Cent performing In Da Club. (C) 2003 Shady Records/Aftermath Records/Interscope Records #50Cent #InDaClub #Remastered #BransonCognac #LeCheminDuRoi #GUnit #PowerTV #ForLife #ThisIs50 #BillionViewsClub
    https://wn.com/50_Cent_In_Da_Club_(Official_Music_Video)
    50 Cent on Diddy/Jay-Z Allegations & Real Reason for Drake’s Lawsuit
    2:33:52

    50 Cent on Diddy/Jay-Z Allegations & Real Reason for Drake’s Lawsuit

    • Order:
    • Duration: 2:33:52
    • Uploaded Date: 16 Dec 2024
    • views: 3305556
    YERRRR, we had to get the GOAT on to discuss what's going on with Diddy, unpack the Jay Z allegations, and breakdown what is happening with Drake and Kendrick, and why Drake is suing. We get to all that, and much much more this week on Flagrant with 50 Cent. INDULGE 00:00 50 Cent ran Alexx off his corners + MSG appearance 1:42 Kendrick, Katt and Jamie Foxx + Comedians are invincible 4:28 Is Jamie the most talented person ever? Puffy Marketing 5:24 Latest with Diddy? Meek went shopping + 50 didn't 9:59 Jay-Z's lawsuit + Issue with Jay-Z? Competitiveness 18:28 Is 50 Nostradamus? Always the outside 21:21 Understanding human nature + Leverage 29:52 "How to Rob" 34:59 Akaash keeps it real + Whoo Kid honesty 37:06 J-Lo & Nas + Irv Gotti interference 41:35 Biggest debut in Hip Hop + He lived it 48:52 Drake's lawsuit + Kendrick got trophies we ain't heard of 51:56 Jay-Z's biggest contract ever 53:55 Did Jay-Z know anything? "I took the pill" 57:05 Comment about Mufasa + 50 not scared of his past 1:01:18 Was Jay-Z pump faking? 1:02:46 50 changed Louisiana's laws 1:08:09 How big is 50's team? 1:16:47 Doing things on your terms + 50 Cent effect 1:21:57 Business acumen + betting on himself 1:24:41 Goofiest ideas + Multiverse incoming 1:28:09 50 was celibate + Tricking 1:31:07 Den of Thieves 2 1:35:11 Drake's success backlash + Lawsuit 1:38:21 People bothered by the no 1 1:40:10 No regrets in music 1:43:39 How would 50 advise Drake? Make them miss you 1:47:33 50 Cent LV Residency + Eminem 1:51:27 Puff was never a scary guy 1:52:36 Developing business acumen + Understood funny 1:57:10 Floyd Jr v Snr + the greatest great 2:00:15 Go to move + Power of association 2:03:56 Ru Paul is the most talented black entertainer 2:05:20 What has 50 failed out? Bones of what??? 2:10:45 Trump wanted 50 HARD + Feeling of getting shot 2:14:50 Watched changed after sh00t1ng 2:17:47 "Why you say f*ck me for?" + Jimmy Henchman kid sl4p 2:20:01 Is it hard to be loved? Entertainment at all costs 2:25:10 Will 50 visit Puff in jail? Why a 1000? 2:30:30 What's the future for 50? AI 2:32:17 Andrew's method acting 50 Cent: In Da Club - Las Vegas Residency – Use Code "SCHULZ50" for a 25% discount. 12.27 – https://www.ticketmaster.com/event/3900614A98FF3190 12.28 – https://www.ticketmaster.com/event/3900614A99023193 12.30 – https://www.ticketmaster.com/event/3900614A9905319A 12.31 – https://www.ticketmaster.com/event/3900614A9908319E 1.3.25 – https://www.ticketmaster.com/event/3900614A990B31A2 1.4.25 – https://www.ticketmaster.com/event/3900614A990E31AE
    https://wn.com/50_Cent_On_Diddy_Jay_Z_Allegations_Real_Reason_For_Drake’S_Lawsuit
    50 Cent - Candy Shop (Official Music Video) ft. Olivia
    4:10

    50 Cent - Candy Shop (Official Music Video) ft. Olivia

    • Order:
    • Duration: 4:10
    • Uploaded Date: 16 Jun 2009
    • views: 1017319795
    REMASTERED IN HD! Official Music Video for Candy Shop performed by 50 Cent (ft. Olivia). Best of: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Follow 50 Cent Instagram: https://www.instagram.com/50cent Twitter: https://twitter.com/50cent Facebook: https://en-gb.facebook.com/50cent TikTok: https://www.tiktok.com/@50cent (C) 2005 Shady Records/Aftermath Records/Interscope Records #50Cent #Olivia #CandyShop #Remastered
    https://wn.com/50_Cent_Candy_Shop_(Official_Music_Video)_Ft._Olivia
    50 Cent Clowns Jay-Z and Diddy’s “Billionaire Brunch” Moment 😂
    0:36

    50 Cent Clowns Jay-Z and Diddy’s “Billionaire Brunch” Moment 😂

    • Order:
    • Duration: 0:36
    • Uploaded Date: 27 Dec 2024
    • views: 5935340
    50 Cent delivers his signature humor as he reacts to Jay-Z’s latest lawsuit and his connection with Puff Daddy. From poking fun at Jay-Z and Diddy’s “billionaire brunch” vibes to sarcastically applauding their “united we stand” moment, 50 Cent holds nothing back. Watch the full video for 50’s hilarious take on Jay and Diddy’s relationship, the ongoing lawsuit drama, and his unique perspective on “Black excellence” in the industry.
    https://wn.com/50_Cent_Clowns_Jay_Z_And_Diddy’S_“Billionaire_Brunch”_Moment_😂
    50 Cent - Many Men (Wish Death) (Dirty Version)
    4:58

    50 Cent - Many Men (Wish Death) (Dirty Version)

    • Order:
    • Duration: 4:58
    • Uploaded Date: 16 Jun 2009
    • views: 581077990
    REMASTERED IN HD! Official Music Video for Many Men (Wish Death) performed by 50 Cent. Best of: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Follow 50 Cent: Instagram: https://www.instagram.com/50cent Twitter: https://twitter.com/50cent Facebook: https://en-gb.facebook.com/50cent TikTok: https://www.tiktok.com/@50cent (C) 2003 Shady Records/Aftermath Records/Interscope Records #50Cent #ManyMen #GetRichOrDyeTryin
    https://wn.com/50_Cent_Many_Men_(Wish_Death)_(Dirty_Version)
    50 Cent - P.I.M.P. (Snoop Dogg Remix) ft. Snoop Dogg, G-Unit
    4:59

    50 Cent - P.I.M.P. (Snoop Dogg Remix) ft. Snoop Dogg, G-Unit

    • Order:
    • Duration: 4:59
    • Uploaded Date: 16 Jun 2009
    • views: 705716906
    REMASTERED IN HD! Best of 50 Cent: https://goo.gl/PgrRic Subscribe here: https://goo.gl/o954jF Music video by 50 Cent performing P.I.M.P.. (C) 2003 Shady Records/Aftermath Records/Interscope Records #50Cent #PIMP #Remastered #SnoopDogg
    https://wn.com/50_Cent_P.I.M.P._(Snoop_Dogg_Remix)_Ft._Snoop_Dogg,_G_Unit
    50 Cent - Baby By Me (Official Music Video) ft. Ne-Yo
    3:56

    50 Cent - Baby By Me (Official Music Video) ft. Ne-Yo

    • Order:
    • Duration: 3:56
    • Uploaded Date: 24 Nov 2009
    • views: 157000329
    Official music video for 50 Cent's "Baby By Me" from the album, Before I Self-Desctruct. Remastered in HD! ► Create a YouTube Short using this song! Tap the 'Shorts Remix' button above to use "Baby By Me" in your YouTube Short. ► Listen to the "Baby By Me" Benny Bennassi Remix: https://www.youtube.com/watch?v=o-F3U9pN7NI Watch more 50 Cent videos: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Follow 50 Cent: https://www.instagram.com/50cent https://www.facebook.com/50cent/ https://twitter.com/50cent Music video by 50 Cent performing Baby By Me. (C) 2009 Shady Records/Aftermath Records/Interscope Records #50Cent #BabyByMe #Remastered
    https://wn.com/50_Cent_Baby_By_Me_(Official_Music_Video)_Ft._Ne_Yo
    50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game | 2025
    4:27

    50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game | 2025

    • Order:
    • Duration: 4:27
    • Uploaded Date: 07 Jan 2025
    • views: 10172
    50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game (Remix) 2025 | Prod. Profetesa Missionary - A Short Film ft. Snoop Dogg & Dr. Dre https://youtu.be/Ho5iOnGcWas Snoop Dogg & Dr. Dre New Album "Missionary" Out Now: https://snoopdogg.lnk.to/Missionary Support Golden Age Hip Hop 📷 Instagram: https://www.instagram.com/westcoast.90s/ 🎵 90s Hip Hop Playlist: https://www.youtube.com/playlist?list=PLCk9xy9nZ8GaR77HEbW6kmh99lpyh7yM1 🎧 Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Beat by Profetesa Beats 💰 Purchase This Beat: https://www.beatstars.com/profetesabeats 📷 Instagram: https://www.instagram.com/profetesa_rap_beats/ 💌 Contact: info@profetesa-beats.com ___________ Follow Snoop Dogg Instagram: http://instagram.com/snoopdogg Facebook: http://facebook.com/snoopdogg New Album with Dr. Dre "Missionary" Out Now: https://snoopdogg.lnk.to/Missionary Follow 50 Cent / G-Unit Instagram: http://instagram.com/50cent Facebook: http://facebook.com/50cent Follow Eminem Instagram: http://instagram.com/eminem Facebook: http://facebook.com/eminem Follow The Game Instagram: http://instagram.com/losangelesconfidential Facebook: http://facebook.com/thegame _________ Snoop Dogg, 50 Cent, Eminem, The Game - Heavy Hustle 2025 Hip Hop Mix Recommended Videos: Snoop Dogg, Eminem, Dr. Dre - GOATS ft. 50 Cent, Ice Cube, Xzibit, DMX https://youtu.be/3B6hTDxNibQ Snoop Dogg, Eminem, 50 Cent - Payback | 2024 https://youtu.be/s-_JMlDw5C8 Snoop Dogg, Eminem, Dr. Dre - Gangsta Smoke ft. 50 Cent https://youtu.be/XirmKQzx0hQ Eminem - Fuel ft. JID (Explicit Video) Diddy Diss 2024 https://www.youtube.com/watch?v=G9ofsGj975c Dr. Dre - Still D.R.E. ft. Snoop Dogg https://youtu.be/_CL6n0FJZpk Dr. Dre - The Next Episode (Official Music Video) ft. Snoop Dogg, Kurupt, Nate Dogg https://youtu.be/QZXc39hT8t4 The Game ft. 50 Cent - How We Do (Official Music Video) https://youtu.be/PH34kMOjmQk 50 Cent - Many Men (Official Video) https://youtu.be/5D3crqpClPY 50 Cent - In Da Club (Official Music Video) https://youtu.be/5qm8PH4xAss Snoop Dogg, Ice Cube, 50 Cent - How We Ride ft. The Game (Music Video) 2024 https://youtu.be/GP93zMn2EBM The Game, Ice Cube - Rollin' ft. Cypress Hill (Explicit Video) 2024 west coast rap, west side rap,west coast gangsta rap, gangsta rap, best rap, 90s rap, gangsta hood rap, dr dre, snoop dogg, ice cube,next episode, wc, east side, dpg, snoop doggy dogg, wiz khalifa, snoop dogg olympics, snoop dogg drop it like is hot, snoop dogg remix, snoop dogg songs, best songs snoop dogg, snoop dogg mix, snoop dogg who am i, death row, dr dre still dre, dr dre eminem, dr dre keep their heads ringing, dr dre album, dr dre super bowl, dr dre piano, dr dre the chronic, dr dre jimmy kimmel, dr dre 2001, dr dre ding dong, dr dre the watcher, eminem, ice cube good cop bad cop, ice cube wc, ice cube friday, ice cube today was a good day, friday movie, no vaseline ice cube, ice cube gangsta rap made me do it, ice cube arest the president, ice cube hello, ice cube check your self, ice cube nwa, dr dre nwa, easy e ice cube dr dre, 50 cent, g unit, g-unit, 50 cent many men, 50 cent in da club, dr dre missionary, snoop dogg missionary, back to business, back in business, dr dre album 2024, snoop dogg album 2024, dr dre missionary, snoop dogg missionary, it was a good day, snoop dogg next episode, snoop dogg dr dre still dre, all eyez on me, aint got no haters, ice cube album 2024, eminem houdini, eminem slim shady, eminem death of slim shady, kendrick lamar not like us, kendrick lamar, rop it like ist hot, eminem, slim Shady, The Death of Slim Shady (Coup De Grâce), 50 cent in da club, many men, g unit, g-unit, gunit, in da club, lil bit, candy shop, bosco, 87 cutclass, game, 50 Cent, How we do, 50 Cent how we do, the game how we do, ice cube Album 2024, ice cube man down, ice cube man down full Album, kendrick lamar, kendrick lamar gnx, drake, kendrick lamar album, slim Shady, marshall matters, snoop dogg fortnite, fortnite, fortnite festival season, chapter 2, kendrick lamar
    https://wn.com/50_Cent,_Eminem,_Snoop_Dogg_Heavy_Hustle_Ft._The_Game_|_2025
    "I've Made Some Mistakes, Just Not That One" - 50 Cent Touts His Celibate, Unmarried Lifestyle
    8:05

    "I've Made Some Mistakes, Just Not That One" - 50 Cent Touts His Celibate, Unmarried Lifestyle

    • Order:
    • Duration: 8:05
    • Uploaded Date: 05 Sep 2024
    • views: 1217672
    Emmy and GRAMMY-winning rapper, producer and entrepreneur Curtis "50 Cent" Jackson tells Stephen he loves not being married, and explains why he's currently abstaining from sex. Stick around for more with 50 Cent and check out his debut novel, "The Accomplice," available now. #Colbert #StephenColbert #50Cent #CurtisJackson #Music #HipHop #NewYork #Celibacy Subscribe To "The Late Show" Channel: http://bit.ly/ColbertYouTube Watch full episodes of "The Late Show": http://bit.ly/1Puei40 Listen to "The Late Show Pod Show" podcast: https://link.chtbl.com/Awagtx95?sid=yt Like "The Late Show" on Facebook: http://on.fb.me/1df139Y Follow "The Late Show" on X: http://bit.ly/1dMzZzG Follow "The Late Show" on Instagram: http://bit.ly/29wfREj Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. --- Stephen Colbert brings his signature satire and comedy to THE LATE SHOW with STEPHEN COLBERT, the #1 show in late night, where he talks with an eclectic mix of guests about what is new and relevant in the worlds of politics, entertainment, business, music, technology and more. Featuring bandleader Louis Cato and “THE LATE SHOW band,” the Peabody Award-winning and Emmy Award-nominated show is broadcast from the historic Ed Sullivan Theater. Stephen Colbert took over as host, executive producer and writer of THE LATE SHOW on Sept. 8, 2015.
    https://wn.com/I've_Made_Some_Mistakes,_Just_Not_That_One_50_Cent_Touts_His_Celibate,_Unmarried_Lifestyle
    50 CENT Greatest Hits Full Album 2023 - Best Songs Of 50 CENT - HIP HOP OLD SCHOOL MIX
    1:18:37

    50 CENT Greatest Hits Full Album 2023 - Best Songs Of 50 CENT - HIP HOP OLD SCHOOL MIX

    • Order:
    • Duration: 1:18:37
    • Uploaded Date: 06 Jul 2023
    • views: 62338
    🎶 Listen to the best hip hop, rap and trap hits with the hottest mixes and the latest songs at HIP HOP MIX. 🎶Explore playlists and mixes for new artists or your favorites, or even search for a song you want to listen to. Thanks for watching! Don't forget to SUBCRIBE, Like & Share my video if you like it! Happy listening! 💕💕💕 https://s.net.vn/7QHe Playlist: https://s.net.vn/pN0m #hiphop #hiphop2023 #hiphopmix Tags: 90s hip hop, 90s hip hop mix, 90s rap music hits playlist, old school hip hop, 90's rap songs, ,90's hip hop mix, hip hop classics, 90's hip hop songs, old school rap, classic hip hop, best of 90's hip hop, throwback hip hop, old school hip hop mix, classic hip hop mix, old school hip hop mix 90's hip hop classic hits, hip hop das antigas, greatest 90's rap songs, hip hop workout rap party mix, hip hop remix, party mix 2023, best hiphop 2023, hip hop party mix 2023, hip hop songs, best rap songs, new rap music, newest rap songs, hip hop mix 2023, rap party mix 2023, new rap playlist, super music rap 2023, hip hop 2023, best hip hop, hip hop music, best gangster rap mix, hip hop rap mix, hiphop rap mix 2023
    https://wn.com/50_Cent_Greatest_Hits_Full_Album_2023_Best_Songs_Of_50_Cent_Hip_Hop_Old_School_Mix
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • 50 Cent - In Da Club (Official Music Video)
      4:08
      50 Cent - In Da Club (Official Music Video)remove from playlist
    • 50 Cent on Diddy/Jay-Z Allegations & Real Reason for Drake’s Lawsuit
      2:33:52
      50 Cent on Diddy/Jay-Z Allegations & Real Reason for Drake’s Lawsuitremove from playlist
    • 50 Cent - Candy Shop (Official Music Video) ft. Olivia
      4:10
      50 Cent - Candy Shop (Official Music Video) ft. Oliviaremove from playlist
    • 50 Cent Clowns Jay-Z and Diddy’s “Billionaire Brunch” Moment 😂
      0:36
      50 Cent Clowns Jay-Z and Diddy’s “Billionaire Brunch” Moment 😂remove from playlist
    • 50 Cent - Many Men (Wish Death) (Dirty Version)
      4:58
      50 Cent - Many Men (Wish Death) (Dirty Version)remove from playlist
    • 50 Cent - P.I.M.P. (Snoop Dogg Remix) ft. Snoop Dogg, G-Unit
      4:59
      50 Cent - P.I.M.P. (Snoop Dogg Remix) ft. Snoop Dogg, G-Unitremove from playlist
    • 50 Cent - Baby By Me (Official Music Video) ft. Ne-Yo
      3:56
      50 Cent - Baby By Me (Official Music Video) ft. Ne-Yoremove from playlist
    • 50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game | 2025
      4:27
      50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game | 2025remove from playlist
    • 8:05
      "I've Made Some Mistakes, Just Not That One" - 50 Cent Touts His Celibate, Unmarried Lifestyleremove from playlist
    • 50 CENT Greatest Hits Full Album 2023 - Best Songs Of 50 CENT - HIP HOP OLD SCHOOL MIX
      1:18:37
      50 CENT Greatest Hits Full Album 2023 - Best Songs Of 50 CENT - HIP HOP OLD SCHOOL MIXremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    50 Cent - In Da Club (Official Music Video)

    CELEBRATING ONE BILLION VIEWS!! REMASTERED IN HD! UP TO 4K!! Get your 50 Cent & G-Unit Merch here: https://www.gunitbrands.com/ Best Of: https://50Cent.lnk.to/YTBestOf Subscribe: https://50Cent.lnk.to/YTSubscribe Stream: https://stream.lnk.to/50Cent Music video by 50 Cent performing In Da Club. (C) 2003 Shady Records/Aftermath Records/Interscope Records #50Cent #InDaClub #Remastered #BransonCognac #LeCheminDuRoi #GUnit #PowerTV #ForLife #ThisIs50 #BillionViewsClub
    4:08
    50 Cent - In Da Club (Official Music Video)
    CELEBRATING ONE BILLION VIEWS!! REMASTERED IN HD! UP TO 4K!! Get your 50 Cent & G-Unit Mer...
    published: 16 Jun 2009
    Play in Full Screen
    2:33:52
    50 Cent on Diddy/Jay-Z Allegations & Real Reason for Drake’s Lawsuit
    YERRRR, we had to get the GOAT on to discuss what's going on with Diddy, unpack the Jay Z ...
    published: 16 Dec 2024
    Play in Full Screen
    4:10
    50 Cent - Candy Shop (Official Music Video) ft. Olivia
    REMASTERED IN HD! Official Music Video for Candy Shop performed by 50 Cent (ft. Olivia). ...
    published: 16 Jun 2009
    Play in Full Screen
    0:36
    50 Cent Clowns Jay-Z and Diddy’s “Billionaire Brunch” Moment 😂
    50 Cent delivers his signature humor as he reacts to Jay-Z’s latest lawsuit and his connec...
    published: 27 Dec 2024
    Play in Full Screen
    4:58
    50 Cent - Many Men (Wish Death) (Dirty Version)
    REMASTERED IN HD! Official Music Video for Many Men (Wish Death) performed by 50 Cent. B...
    published: 16 Jun 2009
    Play in Full Screen
    4:59
    50 Cent - P.I.M.P. (Snoop Dogg Remix) ft. Snoop Dogg, G-Unit
    REMASTERED IN HD! Best of 50 Cent: https://goo.gl/PgrRic Subscribe here: https://goo.gl/o9...
    published: 16 Jun 2009
    Play in Full Screen
    3:56
    50 Cent - Baby By Me (Official Music Video) ft. Ne-Yo
    Official music video for 50 Cent's "Baby By Me" from the album, Before I Self-Desctruct. R...
    published: 24 Nov 2009
    Play in Full Screen
    4:27
    50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game | 2025
    50 Cent, Eminem, Snoop Dogg - Heavy Hustle ft. The Game (Remix) 2025 | Prod. Profetesa Mi...
    published: 07 Jan 2025
    Play in Full Screen
    8:05
    "I've Made Some Mistakes, Just Not That One" - 50 Cent Touts His Celibate, Unmarried Lifestyle
    Emmy and GRAMMY-winning rapper, producer and entrepreneur Curtis "50 Cent" Jackson tells S...
    published: 05 Sep 2024
    Play in Full Screen
    1:18:37
    50 CENT Greatest Hits Full Album 2023 - Best Songs Of 50 CENT - HIP HOP OLD SCHOOL MIX
    🎶 Listen to the best hip hop, rap and trap hits with the hottest mixes and the latest song...
    published: 06 Jul 2023
    Play in Full Screen

    50 Cent

    Curtis James Jackson III (born July 6, 1975), better known by his stage name 50 Cent, is an American rapper, actor, entrepreneur, investor, record, film, and television producer. Born in the South Jamaica neighborhood of the borough of Queens, Jackson began selling drugs at age twelve during the 1980s crack epidemic. Although he left drug-dealing to pursue a musical career, he was struck by nine bullets in a 2000 shooting. After Jackson released the compilation album Guess Who's Back? in 2002, he was discovered by Eminem and signed by Shady Records, Aftermath Entertainment and Interscope Records.

    With the aid of Eminem and Dr. Dre (who produced his first major-label album, Get Rich or Die Tryin'), Jackson became one of the world's best selling rappers and rose to prominence with East Coast hip hop group G-Unit (which he leads de facto). In 2003 he founded G-Unit Records, signing his G-Unit associates Young Buck, Lloyd Banks and Tony Yayo. Jackson had similar commercial and critical success with his second album, The Massacre, which was released in 2005. He released his fifth studio album, Animal Ambition, in 2014 and is working on his sixth studio album: Street King Immortal, scheduled for release in 2016.

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