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

Bobby V

Robert "Bobby" Wilson (born February 27, 1980), better known by his stage name Bobby V, is an American recording artist, pianist, singer and songwriter.

Early life and career beginnings

Bobby V was born (Bobby Wilson) on February 27, 1980, in Mississippi. He later moved to Atlanta, Georgia. Growing up V listened to Michael Jackson, Tony! Toni! Tone!, Marvin Gaye, Jodeci, and The Isley Brothers. Those were the artists that inspired him to become a R&B singer. He later returned to his pier appearing on the debut episode of MTV's Once Upon A Prom, which aired on May 19, 2007. V entered the music scene in 1996 as a member of the R&B youth quartet Mista, at this time using his real name, Bobby Wilson. Under the production of Organized Noize (TLC's "Waterfalls"), the group released their self-titled debut album, which produced the single "Blackberry Molasses". However, the album did not follow in the same success and despite a second album being produced by Tim & Bob, it was never released. Due to management issues the group split in 1997. Bobby later enrolled at Clark Atlanta University majoring in Mass Communications. While in school, Bobby V continued to record in his free time in hopes of one day returning to the stage. In the spring of 2002 he auditioned for season one of American Idol, but did not make the cut.

Nothin' on You

"Nothin' on You" is the debut single by American rapper B.o.B. The song features vocals from Bruno Mars. The song is included in B.o.B's debut studio album, B.o.B Presents: The Adventures of Bobby Ray. An official remix version of this song, which features Big Boi, debuted on March 21, 2010. The song reached number one in the Netherlands, the United Kingdom and the United States. The song was nominated for three Grammys, including Record of the Year, on December 1, 2010 for the 53rd Grammy Awards.

Background

During the summer of 2009, The Smeezingtons (Bruno Mars, Philip Lawrence and Ari Levine) were booked for a week of writing sessions for Lupe Fiasco, B.o.B and Travie McCoy. Atlantic A&R Aaron Bay-Schuck told HitQuarters that one of his responsibilities is in encouraging Mars and Lawrence to develop the best of the original melodies he often heard them casually humming, and it was one of these melodies that formed the inspiration to "Nothin' on You". By the end of the week the group had created a scratch chorus-only demo of the song featuring Bruno Mars singing on a guitar track. The Travie McCoy song "Billionaire" was also conceived at this time. Several weeks later B.o.B joined The Smeezingtons in the studio to complete the full song. In an interview with MidWeek, Mars explained the lyrical inspiration for the song, "Every song I write has to do with a real-life experience, whether it's at the time or me back-tracking to how I felt at another moment. So, yeah, it was about someone; let's leave it at that."

Podcasts:

Bobby V.

ALBUMS

Bobby V.

ALBUMS

  • B.o.B - Nothin' On You (feat. Bruno Mars) [Official Video]

    The official video of "Nothin' On You (feat. Bruno Mars)" by B.o.B from the album 'B.o.B Presents: The Adventures of Bobby Ray'. Listen to B.o.B on Spotify here: http://bit.ly/17jaSKM Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow B.o.B https://instagram.com/bob http://facebook.com/bobatl http://twitter.com/bobatl http://youtube.com/bobatl http://bobatl.com Follow Bruno Mars https://instagram.com/brunomars https://facebook.com/brunomars https://twitter.com/BrunoMars http://brunomars.com Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock,...

    published: 09 Mar 2010
  • Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub]

    Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub] Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub] Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub] #CHILLWITHME #lyrics #vietsub -------------------------------------------------------------- ► Tất cả các quyền thuộc về Warner Music Group (WMG). ✔ Video này đã được cấp giấy phép đặc biệt trực tiếp từ các nghệ sĩ và chủ sở hữu quyền. ✚ Nếu bạn thấy hay, hãy chia sẻ video đến nhiều người hơn. (Facebook, Google +, Twitter.) -------------------------------------------------------------- 💖 Cảm ơn mọi người đã xem và chúc 1 ngày tốt lành ! 💖 👉 Đừng quên bấm nút LIKE, SHARE và ĐĂNG KÍ kênh nhé mọi người 👈 ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ♦ All rights belong to their respective owners. If any owner of track/backgroun...

    published: 04 Mar 2023
  • B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics)

    I take requests just comment! Artist: B.o.B, Bruno Mars Song: Nothin’ On You Album: B.o.B Presents: The Adventures of Bobby Ray Year: 2010 Follow B.o.B: Myspace: https://myspace.com/bobatl Twitter: https://twitter.com/bobatl Instagram: https://www.instagram.com/bob/ Facebook: https://www.facebook.com/Bobatl/ YouTube: https://www.youtube.com/channel/UCpuvu8mrEO4jxjT6sRwE8tg Website: http://www.bobatl.com/ Follow Bruno Mars: Myspace: https://myspace.com/brunomars Twitter: https://twitter.com/brunomars Instagram: https://www.instagram.com/brunomars/ Facebook: https://www.facebook.com/brunomars/ YouTube: https://www.youtube.com/channel/UCoUM-UJ7rirJYP8CQ0EIaHA Website: https://www.brunomars.com/ Follow Me Audioandlyrics: Instagram: https://www.instagram.com/audioandlyrics/?hl=en YouTube: h...

    published: 11 Aug 2019
  • B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,...

    #bob #nothinonyou #brunomars B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,... B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,... B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,... .............................. Lyrics: Beautiful girls, all over the world I could be chasin', but my time would be wasted They got nothin' on you, baby Nothin' on you, baby They might say, "Hi, " and I might say, "Hey" But you shouldn't worry about what they say 'Cause they got nothin' on you, baby (yeah) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) yeah I know you feel where I'm comin' from (from) Regardless of the things in my past that I've done (done) Most of it really was for the hell of the fun (fun) O...

    published: 20 Jul 2022
  • B.o.B - Nothin' On You (feat. Bruno Mars) (Audio)

    Extraida Del CD Original!! No Olviden suscribirse Y Darle Like al vídeo :)

    published: 12 Nov 2020
  • Bruno Mars "Nothing on you" LIVE in Nevada 2011

    SIMPLY DEDICATED TO THE MILLIONS OF BRUNO MARS FANS WHO WATCH YOUTUBE !!!!!! KEEP WATCHING YOUTUBE!!!!! THE USE OF THIRD PARTY AUDIOVISUAL IMAGES OR TEXTS IS BASED ON THE STATEMENT OF BEST PRACTICES IN FAIR USE FOR DOCUMENTARY FILMMAKERS AND ONLINE VIDEO PRODUCERS PUBLISHED BY THE AMERICAN UNIVERSITY CENTER FOR MEDIA AND SOCIAL IMPACT AND THE AMERICAN UNIVERSITY WASHINGTON COLLEGE OF LAW IN THE LINKS BELOW: http://www.cmsimpact.org/fair-use FAIR USE IS AN EXCEPTION TO COPYRIGHT INFRINGEMENT under Section 107 of the U.S. Copyright Law published by the U.S. Copyright Office https://www.copyright.gov/title17/title17.pdf Limitations on exclusive rights: Fair use40 Notwithstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work, including such use by reproducti...

    published: 07 Feb 2018
  • Nothin' On You - B.O.B ft. Bruno Mars lyrics

    [disclaimer] : NO COPYRIGHTS INTENDED. This song belongs to it's rightful owner: B.O.B ft Burno Mars - Nothin' On You

    published: 11 Apr 2010
  • B.o.B. featuring Bruno Mars Nothin on You live

    published: 27 May 2010
  • INDIAN reaction to – Morissette - Bruno Mars Evolution Medley (covers feat. 3RD AVENUE)

    just a fun compilation of classics and hit songs from one of our favorite artists, Bruno Mars. featured tracks: - Just The Way You Are - Nothin' On You - Billionaire - Marry You - Talking To the Moon - It Will Rain - When I Was Your Man - Locked Out of Heaven - Treasure - Uptown Funk - 24K Magic - Finesse - Versace On the Floor - Smokin' Out the Window (Silk Sonic) - Leave The Door Open (Silk Sonic) Become a New member: https://www.youtube.com/@Siraj_Reacts Original Video link: https://www.youtube.com/watch?v=J4R3ynC4OQE&list=RDJ4R3ynC4OQE&start_radio=1 Subscribe to my channel for more reaction videos: https://www.youtube.com/@Siraj_Reacts video credits- Executive Producer: Morissette, @NYMA_MGMT Director: Dave Lamar Cinematographer: Dave Lamar, Jason Max Makeup: Miko Dacanay Hair...

    published: 01 Oct 2024
  • Cody Johnson - "Nothin' on You" (Official Audio Video)

    Cody Johnson - "Nothin' on You" (Official Audio Video) Listen to Cody's new album, "Ain't Nothin' To It" here: https://wmna.sh/aintnothintoit Get "On My Way To You" here: http://wmna.sh/onmywaytoyou Subscribe to Cody's channel for all the latest: https://bit.ly/2D9PWQo Follow Cody on socials! Twitter: https://www.twitter.com/CodyJohnsonBand Instagram: https://CodyJohnson.lnk.to/instagram Facebook: https://CodyJohnson.lnk.to/facebook Website: https://www.codyjohnsonmusic.com Spotify: https://CodyJohnson.lnk.to/spotify The official YouTube channel of Cody Johnson. A former bull rider, country music artist Cody Johnson is a force to be reckoned with. Following the breakout success of his albums Cowboy Like Me and Gotta Be Me, backed by hits “Wild As You" and "With You I Am", Cody up...

    published: 18 Jan 2019
B.o.B - Nothin' On You (feat. Bruno Mars) [Official Video]
3:51

B.o.B - Nothin' On You (feat. Bruno Mars) [Official Video]

  • Order:
  • Duration: 3:51
  • Uploaded Date: 09 Mar 2010
  • views: 468711820
The official video of "Nothin' On You (feat. Bruno Mars)" by B.o.B from the album 'B.o.B Presents: The Adventures of Bobby Ray'. Listen to B.o.B on Spotify here: http://bit.ly/17jaSKM Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow B.o.B https://instagram.com/bob http://facebook.com/bobatl http://twitter.com/bobatl http://youtube.com/bobatl http://bobatl.com Follow Bruno Mars https://instagram.com/brunomars https://facebook.com/brunomars https://twitter.com/BrunoMars http://brunomars.com Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 years of global recorded music history, Atlantic Records’ legacy and passion for artistry continues with Top 40 hitmakers like Wiz Khalifa, Sean Paul, Trey Songz, Bruno Mars, Charlie Puth, Janelle Monáe, and B.o.B. Atlantic Records prides itself for working on Motion Picture Soundtracks, such as “The Greatest Showman”, “Suicide Squad” and “The Fate of the Furious.” As well as Musical Soundtracks including “Dear Evan Hansen,” and Grammy and Tony Award Winning “Hamilton”. It is home to world-renowned record labels representing music from every genre, including Asylum, Big Beat, Canvasback, Elektra, Fueled By Ramen, Rhino, Roadrunner, and Sire. Subscribe for the latest official music videos, official audio videos, performances, bts and more from our artists and projects. https://Atlantic.lnk.to/Subscribe #BoB #NothinOnYou #BrunoMars #OfficialVideo #AtlanticRecords #Atlantic Sing Along At Home with Your Favorite The Greatest Showman Soundtracks ➤ https://bit.ly/AtlanticSing Best Sing Along Songs at Home from Atlantic Records ➤ https://bit.ly/AtlanticSingAlong Home Workout Music from Atlantic Records ➤ https://bit.ly/AtlanticWorkOut Romantic Music To Listen To At Home from Atlantic Records ➤ https://bit.ly/AtlanticRomantic Work From Home Music from Atlantic Records ➤ https://bit.ly/AtlanticWork
https://wn.com/B.O.B_Nothin'_On_You_(Feat._Bruno_Mars)_Official_Video
Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub]
3:51

Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub]

  • Order:
  • Duration: 3:51
  • Uploaded Date: 04 Mar 2023
  • views: 5083873
Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub] Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub] Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub] #CHILLWITHME #lyrics #vietsub -------------------------------------------------------------- ► Tất cả các quyền thuộc về Warner Music Group (WMG). ✔ Video này đã được cấp giấy phép đặc biệt trực tiếp từ các nghệ sĩ và chủ sở hữu quyền. ✚ Nếu bạn thấy hay, hãy chia sẻ video đến nhiều người hơn. (Facebook, Google +, Twitter.) -------------------------------------------------------------- 💖 Cảm ơn mọi người đã xem và chúc 1 ngày tốt lành ! 💖 👉 Đừng quên bấm nút LIKE, SHARE và ĐĂNG KÍ kênh nhé mọi người 👈 ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ♦ All rights belong to their respective owners. If any owner of track/background used in this mix is unhappy,please do not report us,take your time to contact us via mail We will provide you proper credits or remove the video if you demand. ◢ Thanks for watching 🧡 Don't forget to Subscribe , Comment , Share and Like (Youtube, Facebook, Twitter etc.)
https://wn.com/Nothin'_On_You_B.O.B_(Feat._Bruno_Mars)_Lyrics_Vietsub
B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics)
4:31

B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics)

  • Order:
  • Duration: 4:31
  • Uploaded Date: 11 Aug 2019
  • views: 23838567
I take requests just comment! Artist: B.o.B, Bruno Mars Song: Nothin’ On You Album: B.o.B Presents: The Adventures of Bobby Ray Year: 2010 Follow B.o.B: Myspace: https://myspace.com/bobatl Twitter: https://twitter.com/bobatl Instagram: https://www.instagram.com/bob/ Facebook: https://www.facebook.com/Bobatl/ YouTube: https://www.youtube.com/channel/UCpuvu8mrEO4jxjT6sRwE8tg Website: http://www.bobatl.com/ Follow Bruno Mars: Myspace: https://myspace.com/brunomars Twitter: https://twitter.com/brunomars Instagram: https://www.instagram.com/brunomars/ Facebook: https://www.facebook.com/brunomars/ YouTube: https://www.youtube.com/channel/UCoUM-UJ7rirJYP8CQ0EIaHA Website: https://www.brunomars.com/ Follow Me Audioandlyrics: Instagram: https://www.instagram.com/audioandlyrics/?hl=en YouTube: https://www.youtube.com/channel/UChWcegNjI5qZV-8jBgFAJ6A?view_as=subscriber Website: https://audioandlyrics543.wixsite.com/lyricvideo Snapchat: audioandlyricsx Photo: https://unsplash.com/photos/waA4J4uZ-r4 ~I don't own the song enjoy! ................................................................................. Copyright Email: Audioandlyrics543@gmail.com ................................................................................. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
https://wn.com/B.O.B_Nothin’_On_You_Ft._Bruno_Mars_(Lyrics)
B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,...
16:02

B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,...

  • Order:
  • Duration: 16:02
  • Uploaded Date: 20 Jul 2022
  • views: 4219185
#bob #nothinonyou #brunomars B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,... B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,... B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,... .............................. Lyrics: Beautiful girls, all over the world I could be chasin', but my time would be wasted They got nothin' on you, baby Nothin' on you, baby They might say, "Hi, " and I might say, "Hey" But you shouldn't worry about what they say 'Cause they got nothin' on you, baby (yeah) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) yeah I know you feel where I'm comin' from (from) Regardless of the things in my past that I've done (done) Most of it really was for the hell of the fun (fun) On the carousel, so around I spun (spun) With no direction, just tryna get some (some) Tryna chase skirts, livin' in the summer sun (sun) And so I lost more than I had ever won (won) And honestly, I ended up with none (huh?) There's so much nonsense, it's on my conscience I'm thinkin' maybe I should get it out And I don't wanna sound redundant, but I was wonderin' If there was somethin' that you wanna know (that you wanna know) But never mind that, we should let it go (we should let it go) 'Cause we don't wanna be a TV episode (TV episode) And all the bad thoughts, just let 'em go (go), go (go), go (hey) Beautiful girls, all over the world I could be chasin', but my time would be wasted They got nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) They might say, "Hi" (hi), and I might say, "Hey" (hey) But you shouldn't worry about what they say (why?) 'Cause they got nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) yeah Hands down, there will never be another one (nope) I been around and I never seen another one (nah) Because your style, they ain't really got nothin' on (nothin') And you wild when you ain't got nothin' on Baby, you the whole package, plus, you pay your taxes (huh) And you keep it real while them others stay plastic (plastic) You're my Wonder Woman, call me Mr. Fantastic Stop, now think about it I've been to London (yeah), I've been to Paris (yeah) Even way out there to Tokyo (Tokyo) Back home down in Georgia (yeah) to New Orleans (yeah) But you always steal the show (steal the show) And just like that, girl, you got me froze (got me froze) Like a Nintendo 64 (64) If you never knew, well, now you know (know), know (know), know (hey) Beautiful girls (yeah), all over the world (all over) I could be chasin', but my time would be wasted They got nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) They might say, "Hi" (hi), and I might say, "Hey" (hey) But you shouldn't worry about what they say (why?) 'Cause they got nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) yeah Everywhere I go, I'm always hearin' your name (name) And no matter where I'm at, girl, you make me wanna sing (sing) Whether a bus or a plane (plane), or a car or a train (train) No other girl's in my brain and you the one to blame (blame) Beautiful girls (yeah), all over the world (all over) I could be chasin', but my time would be wasted (why?) They got nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) They might say, "Hi" (hi), and I might say, "Hey" (hello) But you shouldn't worry about what they say (why?) 'Cause they got nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) Nothin' on you, baby (na-na-na-nothin' on you, baby) (Na-nothin' on you) yeah Yeah, and that's just how we do it And I'ma let this ride B.o.B and Bruno Mars
https://wn.com/B.O.B_Nothin’_On_You_Ft._Bruno_Mars_(Lyrics)_|_Bruno_Mars,_Jason_Mraz,...
B.o.B - Nothin' On You (feat. Bruno Mars) (Audio)
4:36

B.o.B - Nothin' On You (feat. Bruno Mars) (Audio)

  • Order:
  • Duration: 4:36
  • Uploaded Date: 12 Nov 2020
  • views: 289656
Extraida Del CD Original!! No Olviden suscribirse Y Darle Like al vídeo :)
https://wn.com/B.O.B_Nothin'_On_You_(Feat._Bruno_Mars)_(Audio)
Bruno Mars "Nothing on you" LIVE in Nevada 2011
4:15

Bruno Mars "Nothing on you" LIVE in Nevada 2011

  • Order:
  • Duration: 4:15
  • Uploaded Date: 07 Feb 2018
  • views: 1650384
SIMPLY DEDICATED TO THE MILLIONS OF BRUNO MARS FANS WHO WATCH YOUTUBE !!!!!! KEEP WATCHING YOUTUBE!!!!! THE USE OF THIRD PARTY AUDIOVISUAL IMAGES OR TEXTS IS BASED ON THE STATEMENT OF BEST PRACTICES IN FAIR USE FOR DOCUMENTARY FILMMAKERS AND ONLINE VIDEO PRODUCERS PUBLISHED BY THE AMERICAN UNIVERSITY CENTER FOR MEDIA AND SOCIAL IMPACT AND THE AMERICAN UNIVERSITY WASHINGTON COLLEGE OF LAW IN THE LINKS BELOW: http://www.cmsimpact.org/fair-use FAIR USE IS AN EXCEPTION TO COPYRIGHT INFRINGEMENT under Section 107 of the U.S. Copyright Law published by the U.S. Copyright Office https://www.copyright.gov/title17/title17.pdf Limitations on exclusive rights: Fair use40 Notwithstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work, including such use by reproduction in copies or phonorecords or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright. In determining whether the use made of a work in any particular case is a fair use the factors to be considered shall include— (1) the purpose and character of the use, including whether such use is of a commercial nature or is for nonprofit educational purposes; (2) the nature of the copyrighted work; (3) the amount and substantiality of the portion used in relation to the copyrighted work as a whole; and (4) the effect of the use upon the potential market for or value of the copyrighted work. The fact that a work is unpublished shall not itself bar a finding of fair use if such finding is made upon consideration of all the above factors.
https://wn.com/Bruno_Mars_Nothing_On_You_Live_In_Nevada_2011
Nothin' On You - B.O.B ft. Bruno Mars lyrics
4:24

Nothin' On You - B.O.B ft. Bruno Mars lyrics

  • Order:
  • Duration: 4:24
  • Uploaded Date: 11 Apr 2010
  • views: 20549682
[disclaimer] : NO COPYRIGHTS INTENDED. This song belongs to it's rightful owner: B.O.B ft Burno Mars - Nothin' On You
https://wn.com/Nothin'_On_You_B.O.B_Ft._Bruno_Mars_Lyrics
B.o.B. featuring Bruno Mars Nothin  on You live
4:03

B.o.B. featuring Bruno Mars Nothin on You live

  • Order:
  • Duration: 4:03
  • Uploaded Date: 27 May 2010
  • views: 626825
https://wn.com/B.O.B._Featuring_Bruno_Mars_Nothin_On_You_Live
INDIAN reaction to – Morissette - Bruno Mars Evolution Medley (covers feat. 3RD AVENUE)
12:49

INDIAN reaction to – Morissette - Bruno Mars Evolution Medley (covers feat. 3RD AVENUE)

  • Order:
  • Duration: 12:49
  • Uploaded Date: 01 Oct 2024
  • views: 354
just a fun compilation of classics and hit songs from one of our favorite artists, Bruno Mars. featured tracks: - Just The Way You Are - Nothin' On You - Billionaire - Marry You - Talking To the Moon - It Will Rain - When I Was Your Man - Locked Out of Heaven - Treasure - Uptown Funk - 24K Magic - Finesse - Versace On the Floor - Smokin' Out the Window (Silk Sonic) - Leave The Door Open (Silk Sonic) Become a New member: https://www.youtube.com/@Siraj_Reacts Original Video link: https://www.youtube.com/watch?v=J4R3ynC4OQE&list=RDJ4R3ynC4OQE&start_radio=1 Subscribe to my channel for more reaction videos: https://www.youtube.com/@Siraj_Reacts video credits- Executive Producer: Morissette, @NYMA_MGMT Director: Dave Lamar Cinematographer: Dave Lamar, Jason Max Makeup: Miko Dacanay Hair: Florenz Torrontegui Stylist: John Lozano, assisted by Lon Morelos Producer: Zeny Manguiran Production Assistants: ZL Roncal Edit: Dave Lamar Mix and Master: Dave Lamar, Adonis Tabanda Band: Adonis Tabanda on bass, musical director Gino Madrid on guitar Edward Rosquillo on keys Lawrence Nolan on drums Special Thanks: Studio 28 Soundcheck Inc. #morissettereactions #reactionvideos #reactionphilippines #indianreaction
https://wn.com/Indian_Reaction_To_–_Morissette_Bruno_Mars_Evolution_Medley_(Covers_Feat._3Rd_Avenue)
Cody Johnson - "Nothin' on You" (Official Audio Video)
4:21

Cody Johnson - "Nothin' on You" (Official Audio Video)

  • Order:
  • Duration: 4:21
  • Uploaded Date: 18 Jan 2019
  • views: 24458105
Cody Johnson - "Nothin' on You" (Official Audio Video) Listen to Cody's new album, "Ain't Nothin' To It" here: https://wmna.sh/aintnothintoit Get "On My Way To You" here: http://wmna.sh/onmywaytoyou Subscribe to Cody's channel for all the latest: https://bit.ly/2D9PWQo Follow Cody on socials! Twitter: https://www.twitter.com/CodyJohnsonBand Instagram: https://CodyJohnson.lnk.to/instagram Facebook: https://CodyJohnson.lnk.to/facebook Website: https://www.codyjohnsonmusic.com Spotify: https://CodyJohnson.lnk.to/spotify The official YouTube channel of Cody Johnson. A former bull rider, country music artist Cody Johnson is a force to be reckoned with. Following the breakout success of his albums Cowboy Like Me and Gotta Be Me, backed by hits “Wild As You" and "With You I Am", Cody ups the ante with his new album Ain’t Nothin’ To It – his first project on the CoJo Music/Warner Music Nashville imprint. Featuring the country radio hit “On My Way To You”, Ain’t Nothin’ To It showcases his full range of talents, brandishing the no-nonsense attitude that Cody brings to his music and passionate, rowdy concerts, which include a sold-out performance in front of 74,177 at the Houston Livestock Show and Rodeo – giving new fans a taste of what CoJo Nation, Cody’s diehard fan base, have known for years. #CoJoNation #AintNothinToIt #CodyJohnson
https://wn.com/Cody_Johnson_Nothin'_On_You_(Official_Audio_Video)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • B.o.B - Nothin' On You (feat. Bruno Mars) [Official Video]
    3:51
    B.o.B - Nothin' On You (feat. Bruno Mars) [Official Video]remove from playlist
  • Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub]
    3:51
    Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub]remove from playlist
  • B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics)
    4:31
    B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics)remove from playlist
  • B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,...
    16:02
    B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,...remove from playlist
  • Bruno Mars
    4:15
    Bruno Mars "Nothing on you" LIVE in Nevada 2011remove from playlist
  • Nothin' On You - B.O.B ft. Bruno Mars lyrics
    4:24
    Nothin' On You - B.O.B ft. Bruno Mars lyricsremove from playlist
  • INDIAN reaction to – Morissette - Bruno Mars Evolution Medley (covers feat. 3RD AVENUE)
    12:49
    INDIAN reaction to – Morissette - Bruno Mars Evolution Medley (covers feat. 3RD AVENUE)remove from playlist
  • Cody Johnson -
    4:21
    Cody Johnson - "Nothin' on You" (Official Audio Video)remove from playlist
PLAYLIST TIME:

B.o.B - Nothin' On You (feat. Bruno Mars) [Official Video]

The official video of "Nothin' On You (feat. Bruno Mars)" by B.o.B from the album 'B.o.B Presents: The Adventures of Bobby Ray'. Listen to B.o.B on Spotify here: http://bit.ly/17jaSKM Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow B.o.B https://instagram.com/bob http://facebook.com/bobatl http://twitter.com/bobatl http://youtube.com/bobatl http://bobatl.com Follow Bruno Mars https://instagram.com/brunomars https://facebook.com/brunomars https://twitter.com/BrunoMars http://brunomars.com Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com The official Atlantic Records YouTube Channel is home to the hottest in hip-hop, rock, pop, R&B, indie, musicals and soundtracks. With over 70 years of global recorded music history, Atlantic Records’ legacy and passion for artistry continues with Top 40 hitmakers like Wiz Khalifa, Sean Paul, Trey Songz, Bruno Mars, Charlie Puth, Janelle Monáe, and B.o.B. Atlantic Records prides itself for working on Motion Picture Soundtracks, such as “The Greatest Showman”, “Suicide Squad” and “The Fate of the Furious.” As well as Musical Soundtracks including “Dear Evan Hansen,” and Grammy and Tony Award Winning “Hamilton”. It is home to world-renowned record labels representing music from every genre, including Asylum, Big Beat, Canvasback, Elektra, Fueled By Ramen, Rhino, Roadrunner, and Sire. Subscribe for the latest official music videos, official audio videos, performances, bts and more from our artists and projects. https://Atlantic.lnk.to/Subscribe #BoB #NothinOnYou #BrunoMars #OfficialVideo #AtlanticRecords #Atlantic Sing Along At Home with Your Favorite The Greatest Showman Soundtracks ➤ https://bit.ly/AtlanticSing Best Sing Along Songs at Home from Atlantic Records ➤ https://bit.ly/AtlanticSingAlong Home Workout Music from Atlantic Records ➤ https://bit.ly/AtlanticWorkOut Romantic Music To Listen To At Home from Atlantic Records ➤ https://bit.ly/AtlanticRomantic Work From Home Music from Atlantic Records ➤ https://bit.ly/AtlanticWork
3:51
B.o.B - Nothin' On You (feat. Bruno Mars) [Official Video]
The official video of "Nothin' On You (feat. Bruno Mars)" by B.o.B from the album 'B.o.B P...
published: 09 Mar 2010
Play in Full Screen
3:51
Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub]
Nothin' On You - B.o.B - (feat. Bruno Mars) [Lyrics/Vietsub] Nothin' On You - B.o.B - (fea...
published: 04 Mar 2023
Play in Full Screen
4:31
B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics)
I take requests just comment! Artist: B.o.B, Bruno Mars Song: Nothin’ On You Album: B.o.B...
published: 11 Aug 2019
Play in Full Screen
16:02
B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars, Jason Mraz,...
#bob #nothinonyou #brunomars B.o.B - Nothin’ On You ft. Bruno Mars (Lyrics) | Bruno Mars,...
published: 20 Jul 2022
Play in Full Screen
4:36
B.o.B - Nothin' On You (feat. Bruno Mars) (Audio)
Extraida Del CD Original!! No Olviden suscribirse Y Darle Like al vídeo :)
published: 12 Nov 2020
Play in Full Screen
4:15
Bruno Mars "Nothing on you" LIVE in Nevada 2011
SIMPLY DEDICATED TO THE MILLIONS OF BRUNO MARS FANS WHO WATCH YOUTUBE !!!!!! KEEP WATCHING...
published: 07 Feb 2018
Play in Full Screen
4:24
Nothin' On You - B.O.B ft. Bruno Mars lyrics
[disclaimer] : NO COPYRIGHTS INTENDED. This song belongs to it's rightful owner: B.O.B f...
published: 11 Apr 2010
Play in Full Screen
4:03
B.o.B. featuring Bruno Mars Nothin on You live
published: 27 May 2010
Play in Full Screen
12:49
INDIAN reaction to – Morissette - Bruno Mars Evolution Medley (covers feat. 3RD AVENUE)
just a fun compilation of classics and hit songs from one of our favorite artists, Bruno M...
published: 01 Oct 2024
Play in Full Screen
4:21
Cody Johnson - "Nothin' on You" (Official Audio Video)
Cody Johnson - "Nothin' on You" (Official Audio Video) Listen to Cody's new album, "Ain'...
published: 18 Jan 2019
Play in Full Screen

Bobby V

Robert "Bobby" Wilson (born February 27, 1980), better known by his stage name Bobby V, is an American recording artist, pianist, singer and songwriter.

Early life and career beginnings

Bobby V was born (Bobby Wilson) on February 27, 1980, in Mississippi. He later moved to Atlanta, Georgia. Growing up V listened to Michael Jackson, Tony! Toni! Tone!, Marvin Gaye, Jodeci, and The Isley Brothers. Those were the artists that inspired him to become a R&B singer. He later returned to his pier appearing on the debut episode of MTV's Once Upon A Prom, which aired on May 19, 2007. V entered the music scene in 1996 as a member of the R&B youth quartet Mista, at this time using his real name, Bobby Wilson. Under the production of Organized Noize (TLC's "Waterfalls"), the group released their self-titled debut album, which produced the single "Blackberry Molasses". However, the album did not follow in the same success and despite a second album being produced by Tim & Bob, it was never released. Due to management issues the group split in 1997. Bobby later enrolled at Clark Atlanta University majoring in Mass Communications. While in school, Bobby V continued to record in his free time in hopes of one day returning to the stage. In the spring of 2002 he auditioned for season one of American Idol, but did not make the cut.

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