- published: 07 Jun 2019
- views: 26619824
'+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; })); }); -->
Sir Michael Philip "Mick" Jagger Kt (born 26 July 1943) is an English singer, songwriter and actor, best known as the lead vocalist and a co-founder of The Rolling Stones.
Jagger's career has spanned over 50 years, and he has been described as "one of the most popular and influential frontmen in the history of rock & roll". His distinctive voice and performance, along with Keith Richards' guitar style, have been the trademark of the Rolling Stones throughout the career of the band. Jagger gained press notoriety for his admitted drug use and romantic involvements, and was often portrayed as a countercultural figure. In the late 1960s Jagger began acting in films (starting with Performance and Ned Kelly), to mixed reception. In 1985 Jagger released his first solo album, She's the Boss. In early 2009 he joined the electric supergroup SuperHeavy.
In 1989 Jagger was inducted into the Rock and Roll Hall of Fame, and in 2004 into the UK Music Hall of Fame with the Rolling Stones. In 2003 he was knighted for his services to popular music.
"Let's Work" was the second single from the 1981 album, Controversy, by Prince. The song originates from a dance called "the Rock" that local kids were doing at the time in Minneapolis. Prince responded quickly with a track called "Let's Rock", and wished to quickly release it as a single. Warner Bros. refused, and a disappointed Prince did not include the song on Controversy, saying the phase had passed. Instead, the song was updated with new lyrics and possibly new music and became "Let's Work" — one of his most popular dance numbers to date.
The song is based on a funky bass line and features a shouted title throughout the song and relies heavily on keyboards to create a sexy groove in the verses and quick solos for the choruses. The lyrics are a tease, equating "working" with having sex. The song was backed with "Ronnie, Talk to Russia", which precedes it on the Controversy album.
The extended remix features instrumental solos,and Morris Day(the Time)on drums samples from "Controversy" and "Annie Christian", two other songs from the same album, and extra, more insistent lyrics. Prince performed the extended version in concert during the Controversy and 1999 tours. This is the first U.S. Prince single to include a non-album B-side (although it was previously released as a single in the UK). "Gotta Stop (Messin' About)" was written on the Dirty Mind tour, and is consistent with the minimalist demo-like quality of that album.
"Let's Work" (not to be confused with the Prince song "Let's Work" from the Controversy album) was the lead single from Mick Jagger's second solo album, Primitive Cool. Despite high expectations, it failed to reach the popularity of earlier Jagger singles such as "Just Another Night." The music video for the song featured Mick running down a street with several collections of workers. It was the only track from Primitive Cool included on Jagger's greatest hits album.
Please allow me to reintroduce myself...Forty Licks is back! Released on CD over 20 years ago, the definitive greatest hits collection is out officially on vinyl for the first time as a limited edition 4LP. Also available digitally and in Dolby Atmos, with three tracks new to streaming. Buy/listen now: https://therollingstones.lnk.to/40Licks #TheRollingStones #YouCantAlwaysGetWhatYouWant #RockAndRollCircus Music video by The Rolling Stones performing You Can't Always Get What You Want. © 2019 ABKCO Music & Records
The Rolling Stones have been talking about their big name collaborations on their new album. Guitarist Ronnie Wood said Lady Gaga and Stevie Wonder were both involved in Hackney Diamonds - although Gaga seemed a bit shy about once taking part in the studio. Full story: https://news.sky.com/story/the-rolling-stones-confirm-details-of-new-album-hackney-diamonds-12955496 #rollingstones #ladygaga #mickjagger SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itune...
Taylor Swift and Mick Jagger of The Rolling Stones performing '(I Can't Get No) Satisfaction' • Tour : The 1989 World Tour (2015) • Date : September 26, 2015 • City : Nashville, Tennessee • Venue : Bridgestone Arena 0:00 Taylor talks about the guest 1:03 Taylor introduces Mick Jagger 1:12 Song starts 4:19 Paul Sidoti's guitar solo 5:04 Song resumes 6:42 Song ends 6:59 Taylor's "mic drop" Original videos (all credits to the ones who filmed this performance) : - https://youtu.be/-RVXXqeS4OU - https://youtu.be/38OD81kvNrw - https://youtu.be/aXw4do5d7aI - https://youtu.be/OfNay3XSp9g - https://youtu.be/KJhE1JJYi0Y - https://youtu.be/MZbRrFoeMNc - https://youtu.be/aLi-IMEhOPw - https://www.instagram.com/p/8Uf9X3D3I6/?utm_medium=copy_link - https://www.instagram.com/p/BFfkyH8D3Pz/?utm_medium=c...
UK release: Sept 5th - Pre-order the new album “Hands All Over” including ‘Moves Like Jagger’ on iTunes now: http://bit.ly/oravTV Sign up for updates: http://smarturl.it/Maroon5.News Music video by Maroon 5 performing Moves Like Jagger. (C) 2011 A&M/Octone Records #VEVOCertified on April 16, 2012. http://www.vevo.com/certified http://www.youtube.com/vevocertified
© 2007 WMG Just Another Night Subscribe for more: http://smarturl.it/MickJaggerYouTube http://www.mickjagger.com/ https://twitter.com/MickJagger https://www.facebook.com/mickjaggerofficial http://mickjagger.shop.bravadousa.com/Default.aspx http://instagram.com/mickjagger Give me just another night, just another night with you Give me just another kiss, just before the dawn breaks through 'Cause I'm homesick, feel a little down and blue And I'm hurting, hurting baby just like you I was lonely 'til I saw you at the station And I never thought you'd keep our rendezvous Baby it's true. Give me just another night, just another night with you Give me just another kiss, just before the dawn breaks through 'Cause I'm hungry, hungry for your loving baby And I'm thirsty, thirsty for your lo...
From "David Bowie - Parkinson Interview ("Life on Mars", 2002)" here: https://www.youtube.com/watch?v=bnLgqeFxkW0 The dialogue between Mick Jagger and the person in the audience: Guy yells out: "Get your hair cut!!". Mick says: "What! ...and look like YOU!?" (Thanks to Chris Wilder)
Mick Jagger Is Now Over 80 How He Lives Is So Sad. What Mick Jagger's reputation is built upon. Leading The Rolling Stones, his journey through time is adorned with myriad relationships, from fleeting encounters to enduring bonds spanning decades. In addition, he is also so rebellious that it's hard to imagine all that was done by just one man. However, even though he broke all of his family's expectations, he stood on his own path and struggled with many tragedies on his own. Mick Jagger's life must be very interesting, so what are you waiting for, let's start the video.
- A brand new studio album from The Rolling Stones… Hackney Diamonds 💥 Out October 20th & available to pre-order now: https://therollingstones.lnk.to/Hackn... Watch the band introduce the album LIVE in conversation with Jimmy Fallon: https://therollingstones.lnk.to/Hackn... // New album, new music, new era // Listen to first single ANGRY: https://therollingstones.lnk.to/AngryYT Shop exclusive & limited Hackney Diamonds products on Stones Official Store: https://therollingstones.lnk.to/Hackn... Join Stones world // YouTube: https://RollingStones.lnk.to/YouTube Instagram: https://RollingStones.lnk.to/Instagram Tik Tok: https://RollingStones.lnk.to/TikTok_ Twitter/X: https://RollingStones.lnk.to/Twitter Facebook: https://RollingStones.lnk.to/Facebook Join Stones mailing list for e...
Hola gente, hoy les traigo una canción de los "stones", entre muchas comillas, ya que no cuenta con la participación de Keith Richards ni Brian Jones (miembros oficiales en aquella epoca), pero si con el resto de la muchachada de aquella época (Mick Jagger, Charlie Watts y Bill Wyman). Este es un cover de una canción de Blues del año 1940, siendo versionada por varios artistas. Fue grabada por la muchachada antes mencionada junto con Ry Cooder (guitarra) y Nicky Hopkins (teclados y piano), junto con las demás canciones del disco "Jamming With Edwars!". El disco fue grabado en la sesiones de Let It Bleed, cuando esperaban que Keith Richards volviese para seguir con las grabaciones del disco antes mencionado. Todo porque se enojo con Jimmy Miller por traer a Cooder para reforzar las guitarr...
The Rolling Stones frontman delivers a list for the ages. (Air date: 12/11/2012) #MickJagger #RollingStones #Letterman Subscribe to Letterman: https://bit.ly/3GeOIAg Follow Letterman on Social: Facebook: https://www.facebook.com/DavidLetterman Instagram: https://www.instagram.com/letterman/ Twitter: https://twitter.com/Letterman Welcome to the Letterman YouTube Channel, home to all your favorite clips from Late Night and Late Show - as well as conversations with the writers, producers and performers who helped make it all happen. These highlights have been artisanly-produced, carefully-curated, and chosen completely at random by an old computer that used to pick numbers for the New York Lotto back in the 90’s.
© 2007 WMG Let's Work Subscribe for more: http://smarturl.it/MickJaggerYouTube http://www.mickjagger.com/ https://twitter.com/MickJagger https://www.facebook.com/mickjaggerofficial http://mickjagger.shop.bravadousa.com/Default.aspx http://instagram.com/mickjagger No sitting down on your butt The world don't owe you No sitting down in a rut I wanna show you Don't waste your energy On making enemies Just take a deep breath And work your way up Let's work, be prou Stand tall, touch the clouds Man and woman, be free Let's work, kill poverty La, la, la Work your way up Let's work, be prou Stand tall, touch the clouds Man and woman, be free Let's work, kill poverty You're sitting down on your butt And your get greedy You start to lose your nuts Don't you look seedy Can generosity brin...
Reelin’ In The Years Productions, one of America’s largest footage archives, and Double 2 BV, a Netherlands production company, have acquired the rights to the Dutch music program Countdown. Often referred to as “Europe’s #1 Rock Show,” Countdown was on-the-air for 16 years (1977-1993), and was broadcast in 18 countries, making it one of the most successful music shows in the history of television. The archive contains over 3,000 hours of musical performances, interviews and concert appearances by the greatest rock, R&B, pop, new wave and rap/hip-hop artists of the era, including: Paul McCartney, The Rolling Stones, Bruce Springsteen, Prince, U2, Michael Jackson, The Police, David Bowie, Beastie Boys, George Harrison, Billy Joel, Whitney Houston, Run-DMC, Depeche Mode, Culture Club, Duran...
Track 2 of 10.
Harry Matjan
Mick camps it up on his first solo performance on TOTP.
Mick Jagger- Let's Work-TOTP, CA(1987) 4K HD
1987 12" Single Produced & Remixed By Steve Thompson & Michael Barbiero With Mick Jagger & David Stewart 1987 CBS Records
Mick Jagger - "Let's Work" Lyrics No sitting down on your butt The world don't owe you No sitting down in a rut I wanna show you Don't waste your energy On making enemies Just take a deep breath And work your way up Let's work, be prou Stand tall, touch the clouds Man and woman, be free Let's work, kill poverty La, la, la Work your way up Let's work, be prou Stand tall, touch the clouds Man and woman, be free Let's work, kill poverty You're sitting down on your butt And your get greedy You start to lose your nuts Don't you look seedy Can generosity bring you humility So take a deep breath Ain't gonna sweat for you Ain't gonna sigh for you Ain't gonna cry for you If you're lazy Ain't gonna slave for you Ain't gonna hurt for you It just won't work for you If you're lazy Let's work,...
Sir Michael Philip "Mick" Jagger Kt (born 26 July 1943) is an English singer, songwriter and actor, best known as the lead vocalist and a co-founder of The Rolling Stones.
Jagger's career has spanned over 50 years, and he has been described as "one of the most popular and influential frontmen in the history of rock & roll". His distinctive voice and performance, along with Keith Richards' guitar style, have been the trademark of the Rolling Stones throughout the career of the band. Jagger gained press notoriety for his admitted drug use and romantic involvements, and was often portrayed as a countercultural figure. In the late 1960s Jagger began acting in films (starting with Performance and Ned Kelly), to mixed reception. In 1985 Jagger released his first solo album, She's the Boss. In early 2009 he joined the electric supergroup SuperHeavy.
In 1989 Jagger was inducted into the Rock and Roll Hall of Fame, and in 2004 into the UK Music Hall of Fame with the Rolling Stones. In 2003 he was knighted for his services to popular music.
Yeah!
I'm livin' a charmed life
Whoo!
Yeah! I'm livin' a charmed life
When I walk out of my front door
I'm livin' a charmed life
Put my foot down in the fast lane... huh
And I'm livin' a charmed life
I move to the left
I move to the right
Watch out for the husband
Stay close to the wife
Yeah!
I'm livin' a charmed life (Charmed life)
Whoo! Yeah!
On edge of a nerve
When I step out on the dance floor
Charmed life (Charmed life)
I move to the left
I move to the right
Ahhhh
When I'm walkin' on the North edge
I'm livin' a charmed life
Yeah
Hangin' by a left-up tiny thread
Be a sacrifice
Look out...
Yeah!
I'm livin' a charmed life (Charmed life)
Whoo! Yeah!
I'm livin' a charmed life (Charmed life)
Whoo!
[18 sec. harmonica solo]
Mmmm... I like to keep my head way down in this town
Someday I like to stand up
I hope my body'll prowl-l-l
Come on. Charmed life. (Charmed life)
Go on, come on!
I'm livin' a charmed life. (Charmed life)
Yeah... yeah! Livin' a charmed life. (Charmed life)
Whooo! Yeah! Livin' a charmed life. (Charmed life)
Whoo! Yeah! Livin' a charmed life.
Whoo! Yeah! Livin' a charmed life.