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

Come with Me

Come with Me may refer to:

  • Come with Me (EP), a 2008 EP by Bobby Valentino
  • "Come with Me" (Ricky Martin song), 2013
  • "Come with Me" (Dappy song), featuring Dawood, Retro, and Margs, 2012
  • "Come with Me" (Kumi Koda song), 2003
  • "Come with Me" (Phil Collins song), 2003
  • "Come with Me" (Puff Daddy song), featuring Jimmy Page, 1998
  • "Come with Me" (Sammie song), 2007
  • "Come with Me" (Waylon Jennings song), 1979
  • "Come with Me", a song by Amerie from Touch
  • "Come with Me", a song by Britt Love
  • "Come with Me", a song by Flo Rida from Only One Flo (Part 1)
  • "Come with Me", a song by Jay Sean from Me Against Myself
  • "Come with Me", a song by Special D. from Reckless
  • Come with Me (Kumi Koda song)

    "Come with Me" (stylized as "COME WITH ME") is Kumi Koda's eighth domestic solo single. The single charted at #14 on Oricon and stayed on the charts for nine weeks. The English versions of real Emotion and 1000 no Kotoba found on this single are not the ones that were included in the English release of the Final Fantasy X-2 video game: the versions found in the game were sung by Jade Villalon from the group Sweetbox.

    Promotional Advertisements

    COME WITH ME was used in a television commercial for Choya Umeshu's "Ume jelly".

    Track list

    Charts and sales

    Alternate Versions

    Currently, there are three renditions of COME WITH ME:

  • COME WITH ME: Found on the single (2003) and corresponding album feel my mind (2004)
  • COME WITH ME [Instrumental]: Found on the single (2003)
  • COME WITH ME [Overhead Champion Remix]: Found on Beach Mix (2012)
  • References

  • "COME WITH ME / KODA KUMI / ORICON STYLE". Oricon. Retrieved January 26, 2016.
  • "real Emotion (North American Ver.)". Song Lyrics. Retrieved January 11, 2016.
  • Come with Me (Ricky Martin song)

    "Come with Me" is a song recorded by Puerto Rican singer-songwriter Ricky Martin for his upcoming English-language studio album. It was produced by the Australian duo DNA Songs (Anthony Egizii and David Musumeci) and IIan Kidron from The Potbelleez. "Come with Me" premiered on June 13, 2013, during the The Kyle and Jackie O Show in Australia and was digitally released worldwide on June 14, 2013. The Spanglish Version of the song was released on July 18, 2013 and the 7th Heaven remixes were released on September 16, 2013.

    Release and cover

    "Come with Me" premiered on Australian radio stations on June 13, 2013. It was digitally released the next day in most countries worldwide including Australia, Canada, France, Germany, Italy, Mexico, New Zealand, Spain, the United Kingdom and the United States. On July 15, a Spanglish version of the song was made available for digital download in the same territories. A four-track digital remix EP done by British remix and production team 7th Heaven was made available for download on September 16. The EP contains Radio and Extended version of both the English and Spanglish version of "Come with Me". The cover art for the single features Martin's half face and is in purple color. Mike Wass of Idolator criticized it, calling it less inspiring and further wrote, "This is one of the best-looking men in the world. Why would you distort his face and use that drab purple color?".

    Podcasts:

    • Special D - Come With Me (Official Video)

      Official video for the UK release of Special D "Come With Me". More Classics here ➠ http://clb.land/classix

      published: 10 Jun 2008
    • COME WITH ME - Special D

      I GET BORD....

      published: 29 Jul 2007
    • Puff Daddy - Come With Me (Album Version)

      Artist: Puff Daddy / Jimmy Page Song Title: Come With Me (Album Version) Album/Year: Godzilla Original Soundtrack (1998) Genre: Hip Hop

      published: 08 Dec 2012
    • Puff Daddy - Come With Me - Godzilla soundtrack (song uncensored)

      Puff Daddy featuring Jimmy Page - "Come With Me" (1998 OST music video with lyrics) --- https://snarly.github.io/yt6/

      published: 31 Mar 2014
    • Ricky Martin - Come With Me (Official)

      Come With Me (Official) Published on Aug 21, 2013 Official music video by Ricky Martin performing Come With Me. (C) 2013 RM Enterprise Buy “Come With Me” now on iTunes: https://itunes.apple.com/us/album/com... Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com

      published: 21 Aug 2013
    • Godzilla The Album: [1998] Puff Daddy and Jimmy Page: Come With Me

      Since my first video of this won't play, I re-uploaded it. All rights belong to their proper owners. 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. No copyright intended.

      published: 09 Nov 2013
    • Shai - Come With Me

      Music video by Shai performing Come With Me. (C) 1995 Gasoline Alley Records Inc.

      published: 30 Nov 2009
    • Surfaces - Come With Me (Official Audio)

      Surfaces - Come With Me (Official Audio) Official Audio for "Come With Me” by Surfaces Download/Stream Pacifico here: https://surfaces.lnk.to/pacifico Tour Tickets On Sale NOW @ www.surfacesmusic.com/tour 8/25 London, UK 9/8 Phoenix, AZ 9/10 Denver, CO 9/14 Portland, OR 9/15 Seattle, WA 9/17 Salt Lake City, UT 9/21 San Diego, CA 9/23 San Francisco, CA 9/24 Los Angeles, CA 10/20 St. Petersburg, FL 10/21 Orlando, FL 10/22 Ft. Lauderdale, FL 10/24 Birmingham, AL 10/27 Nashville, TN 10/29 Raleigh, NC 10/30 Charlotte, NC 11/1 Washington, DC 11/3 Boston, MA 11/5 New York, NY 11/6 Philadelphia, PA 11/7 Pittsburgh, PA 11/9 Toronto, ON 11/11 Columbus, OH 11/12 Cleveland, OH 11/13 Royal Oak, MI 11/14 St. Louis, MO 11/16 Kansas City, MO 11/18 Madison, WI 11/19 Minneapolis, MN Follow S...

      published: 25 Jun 2021
    • Come With Me (Original Mix)

      Provided to YouTube by Kontor New Media Come With Me (Original Mix) · Nora En Pure Come With Me ℗ GNKP Goodnight Kiss Productions GmbH Released on: 2013-03-11 Artist: Nora En Pure Composer: Christian Beat Hirt Lyricist: Christian Beat Hirt Music Publisher: Sirup Music (SUISA) Auto-generated by YouTube.

      published: 06 Nov 2014
    • Patti Austin & James Ingram - Baby, Come To Me • TopPop

      James Edward Ingram (February 16, 1952 – January 29, 2019) was an American singer, songwriter, musician and record producer. He was a two-time Grammy Award-winner and a two-time Academy Award nominee for Best Original Song. Ingram, an Ohio native, got his start as a musician with the band Revelation Funk and later played keyboards for Ray Charles. He was nominated for 14 Grammy Awards, winning for best male R&B performance for his song "One Hundred Ways" in 1981 and best R&B performance for a duo or group in 1984 for "Yah Mo B There." His duet with Patti Austin, "How Do You Keep the Music Playing," earned an Oscar nomination for best original song in 1983. Ingram was also nominated for two Golden Globe Awards -- one in 1994 for best original song for "The Day I Fall in Love" and again in ...

      published: 22 Oct 2015
    developed with YouTube
    Special D - Come With Me (Official Video)
    2:40

    Special D - Come With Me (Official Video)

    • Order:
    • Duration: 2:40
    • Uploaded Date: 10 Jun 2008
    • views: 8836540
    Official video for the UK release of Special D "Come With Me". More Classics here ➠ http://clb.land/classix
    https://wn.com/Special_D_Come_With_Me_(Official_Video)
    COME WITH ME - Special D
    3:52

    COME WITH ME - Special D

    • Order:
    • Duration: 3:52
    • Uploaded Date: 29 Jul 2007
    • views: 48253163
    I GET BORD....
    https://wn.com/Come_With_Me_Special_D
    Puff Daddy - Come With Me (Album Version)
    6:10

    Puff Daddy - Come With Me (Album Version)

    • Order:
    • Duration: 6:10
    • Uploaded Date: 08 Dec 2012
    • views: 2059654
    Artist: Puff Daddy / Jimmy Page Song Title: Come With Me (Album Version) Album/Year: Godzilla Original Soundtrack (1998) Genre: Hip Hop
    https://wn.com/Puff_Daddy_Come_With_Me_(Album_Version)
    Puff Daddy - Come With Me - Godzilla soundtrack (song uncensored)
    7:09

    Puff Daddy - Come With Me - Godzilla soundtrack (song uncensored)

    • Order:
    • Duration: 7:09
    • Uploaded Date: 31 Mar 2014
    • views: 5001836
    Puff Daddy featuring Jimmy Page - "Come With Me" (1998 OST music video with lyrics) --- https://snarly.github.io/yt6/
    https://wn.com/Puff_Daddy_Come_With_Me_Godzilla_Soundtrack_(Song_Uncensored)
    Ricky Martin - Come With Me (Official)
    3:36

    Ricky Martin - Come With Me (Official)

    • Order:
    • Duration: 3:36
    • Uploaded Date: 21 Aug 2013
    • views: 40243825
    Come With Me (Official) Published on Aug 21, 2013 Official music video by Ricky Martin performing Come With Me. (C) 2013 RM Enterprise Buy “Come With Me” now on iTunes: https://itunes.apple.com/us/album/com... Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com
    https://wn.com/Ricky_Martin_Come_With_Me_(Official)
    Godzilla The Album: [1998] Puff Daddy and Jimmy Page: Come With Me
    6:08

    Godzilla The Album: [1998] Puff Daddy and Jimmy Page: Come With Me

    • Order:
    • Duration: 6:08
    • Uploaded Date: 09 Nov 2013
    • views: 1859660
    Since my first video of this won't play, I re-uploaded it. All rights belong to their proper owners. 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. No copyright intended.
    https://wn.com/Godzilla_The_Album_1998_Puff_Daddy_And_Jimmy_Page_Come_With_Me
    Shai - Come With Me
    4:38

    Shai - Come With Me

    • Order:
    • Duration: 4:38
    • Uploaded Date: 30 Nov 2009
    • views: 4307850
    Music video by Shai performing Come With Me. (C) 1995 Gasoline Alley Records Inc.
    https://wn.com/Shai_Come_With_Me
    Surfaces - Come With Me (Official Audio)
    3:30

    Surfaces - Come With Me (Official Audio)

    • Order:
    • Duration: 3:30
    • Uploaded Date: 25 Jun 2021
    • views: 15266652
    Surfaces - Come With Me (Official Audio) Official Audio for "Come With Me” by Surfaces Download/Stream Pacifico here: https://surfaces.lnk.to/pacifico Tour Tickets On Sale NOW @ www.surfacesmusic.com/tour 8/25 London, UK 9/8 Phoenix, AZ 9/10 Denver, CO 9/14 Portland, OR 9/15 Seattle, WA 9/17 Salt Lake City, UT 9/21 San Diego, CA 9/23 San Francisco, CA 9/24 Los Angeles, CA 10/20 St. Petersburg, FL 10/21 Orlando, FL 10/22 Ft. Lauderdale, FL 10/24 Birmingham, AL 10/27 Nashville, TN 10/29 Raleigh, NC 10/30 Charlotte, NC 11/1 Washington, DC 11/3 Boston, MA 11/5 New York, NY 11/6 Philadelphia, PA 11/7 Pittsburgh, PA 11/9 Toronto, ON 11/11 Columbus, OH 11/12 Cleveland, OH 11/13 Royal Oak, MI 11/14 St. Louis, MO 11/16 Kansas City, MO 11/18 Madison, WI 11/19 Minneapolis, MN Follow Surfaces Instagram: https://www.instagram.com/surfacesmusic/ Facebook: https://www.facebook.com/surfacesmusic Twitter: https://twitter.com/surfacesmusic Spotify: https://open.spotify.com/artist/4ETSs924pXMzjIeD6E9b4u?si=pwl5bniHTfCguqrqxn7wEA Website: http://www.surfacesmusic.com/ #Surfaces #ComeWithMe #SalemIlese #Visualizer
    https://wn.com/Surfaces_Come_With_Me_(Official_Audio)
    Come With Me (Original Mix)
    6:26

    Come With Me (Original Mix)

    • Order:
    • Duration: 6:26
    • Uploaded Date: 06 Nov 2014
    • views: 523889
    Provided to YouTube by Kontor New Media Come With Me (Original Mix) · Nora En Pure Come With Me ℗ GNKP Goodnight Kiss Productions GmbH Released on: 2013-03-11 Artist: Nora En Pure Composer: Christian Beat Hirt Lyricist: Christian Beat Hirt Music Publisher: Sirup Music (SUISA) Auto-generated by YouTube.
    https://wn.com/Come_With_Me_(Original_Mix)
    Patti Austin & James Ingram - Baby, Come To Me • TopPop
    3:31

    Patti Austin & James Ingram - Baby, Come To Me • TopPop

    • Order:
    • Duration: 3:31
    • Uploaded Date: 22 Oct 2015
    • views: 13162631
    James Edward Ingram (February 16, 1952 – January 29, 2019) was an American singer, songwriter, musician and record producer. He was a two-time Grammy Award-winner and a two-time Academy Award nominee for Best Original Song. Ingram, an Ohio native, got his start as a musician with the band Revelation Funk and later played keyboards for Ray Charles. He was nominated for 14 Grammy Awards, winning for best male R&B performance for his song "One Hundred Ways" in 1981 and best R&B performance for a duo or group in 1984 for "Yah Mo B There." His duet with Patti Austin, "How Do You Keep the Music Playing," earned an Oscar nomination for best original song in 1983. Ingram was also nominated for two Golden Globe Awards -- one in 1994 for best original song for "The Day I Fall in Love" and again in the same category the following year for "Look What Love Has Done." He co-wrote Michael Jackson's hit song "P.Y.T. (Pretty Young Thing)" with Quincy Jones. James Ingram visited the TopPop studios in Hilversum, the Netherlands twice in 1983. He performed ‘Party Animal’ from his 1983 album ‘It’s Your night’ on 28 October 1983 Earlier that year, on 19 February 1983 he performed his duet with Patti Austin ‘Baby Come To Me’ for the TopPop cameras. "Baby, Come to Me" is a love ballad from Patti Austin's 1981 album Every Home Should Have One, sung as a duet by Austin and James Ingram. It was written by Rod Temperton (formerly of Heatwave). The song was released as a single in April 1982, peaking at #73 on the Billboard Hot 100 chart. However, several months later the popular American soap opera General Hospital began to feature the song heavily, as the love theme for the character Luke Spencer. The single was re-released in October 1982, and reached #1 on the chart in February 1983. Watch our great music videos ❯ https://goo.gl/feVLNN More TopPop? Subscribe here ❯ https://goo.gl/aICMxi More info on Wikipedia ❯ https://en.wikipedia.org/wiki/TopPop Broadcast date: 1983-02-19 This is to let you know that the video recording of the video clip was originally recorded by AVROTROS Broadcasting. AVROTROS Broadcasting hereby warrants and represents that it is the sole and exclusive owner of the physical film and/or videotape footage in this video clip. The performance of the artist(s) in the clip was filmed and recorded with the written consent of the artist(s) and their representatives. AVROTROS is a Dutch radio and television broadcaster, founded in 2014 from a merger of AVRO and TROS. From January 1st, 2014 the name of the merged broadcaster was used in joint programmes. AVRO was founded in 1923 as the Netherlands first public broadcaster. TROS started broadcasting in 1964. Toppop was a weekly AVRO pop program that was aired between 1970 and 1988. AVROTROS Broadcasting PO Box 2 1200 JA Hilversum The Netherlands TopPop was the first regular dedicated pop music TV show in the Dutch language area. Dutch broadcaster AVRO aired the programme weekly, from 1970 to 1988. Presenter Ad Visser hosted the show for its first fifteen years. World famous music artists performed on TopPop: ABBA, 10CC, Bee Gees, The Jacksons with Michael Jackson, David Bowie, Earth & Fire, Queen, Golden Earring, Boney M, KC & The Sunshine Band, Chic, Donna Summer and many many more.
    https://wn.com/Patti_Austin_James_Ingram_Baby,_Come_To_Me_•_Toppop
    • Ricky Martin - Come With Me (Official)

      Come With Me (Official) Published on Aug 21, 2013 Official music video by Ricky Martin performing Come With Me. (C) 2013 RM Enterprise Buy “Come With Me” now on iTunes: https://itunes.apple.com/us/album/com... Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com

      published: 21 Aug 2013
    • Ricky Martin - Come With Me (Audio)

      Music video by Ricky Martin performing Come With Me Audio. (C) 2013 Sony Music Entertainment US Latin LLC #RickyMartin #ComeWithMe #Vevo #LatinPop #OfficialAudio

      published: 19 Jun 2013
    • Ricky Martin - Come With Me (En Vivo)

      Music video by Ricky Martin performing Come With Me. (C) 2013 Sony Music Entertainment US Latin LLC #RickyMartin #ComeWithMe #Vevo #LatinPop #EnVevo

      published: 25 Jul 2013
    • Ricky Martin - Come With Me (Lyric Video)

      Come With Me (Official) https://www.youtube.com/watch?v=Q6AOfdPhOHo Published on Aug 21, 2013 Official music video by Ricky Martin performing Come With Me. (C) 2013 RM Enterprise Buy ôCome With Meö now on iTunes: http://smarturl.it/ComeWithMe Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com" #RickyMartin #ComeWithMe #Vevo #LatinPop #OfficialLyric

      published: 27 Jun 2013
    • Come with Me

      Provided to YouTube by Sony Music Latin Come with Me · Ricky Martin Come with Me ℗ 2013 Sony Music Entertainment US Latin LLC Released on: 2013-06-14 Background Vocal, Keyboards, Composer, Lyricist, Mixing Engineer, Programmer: Anthony Egizii Background Vocal, Composer, Lyricist: David Musumeci Background Vocal, Composer, Lyricist: Ilan Kidron Producer: DNA Engineer: Adrian Breakspear Auto-generated by YouTube.

      published: 12 Nov 2019
    • Ricky Martin - Come With Me Lyrics

      Come With Me By Ricky Martin

      published: 14 Apr 2014
    • Ricky Martin - Come With Me (Spanglish Version)

      Come With Me (Spanglish) Published on Aug 21, 2013 Music video by Ricky Martin performing Come With Me (Spanglish version). (C) 2013 RM Enterprise Buy “Come With Me” (Spanglish) now on iTunes: https://itunes.apple.com/us/album/com... Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.pridecube.com/profile/RickyMa... http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com

      published: 21 Aug 2013
    • Ricky Martin Performs Come With Me: The Voice Australia Season 2

      Ricky Martin performs his new single 'Come With Me' in a worldwide exclusive performance at The Voice Grand Finale. See more at http://www.thevoice.com.au on web, tablet and mobile, or buy the tracks on iTunes http://bit.ly/18cE8GN http://facebook.com/thevoiceau http://twitter.com/thevoiceau #thevoiceau http://instagram.com/TheVoiceAU http://thevoiceau.tumblr.com http://pinterest.com/thevoiceau http://plus.google.com/+thevoiceau http://storify.com/thevoiceau

      published: 17 Jun 2013
    • #MBCTheVoice - Ricky Martin- Come With Me

      شاهد الحلقة الكاملة وتعليق المدربين على شاهد.نت http://ow.ly/s7bdg The Voice أحلى صوت http://www.mbc.net/thevoice http://www.facebook.com/MBCTheVoice http://www.twitter.com/MBCTheVoice http://www.instagram.com/MBCTheVoiceInsta http://plus.google.com/+mbcthevoice https://www.keek.com/mbcthevoice MBC1 http://www.mbc.net/mbc1 http://www.facebook.com/MBC1tv http://twitter.com/mbc1tweets MBC MASR http://www.mbc.net/mbcmasr http://www.facebook.com/mbcmasr http://twitter.com/mbcmasr Shahid.net http://www.shahid.net http://www.facebook.com/shahidvod http://www.twitter.com/shahidvod

      published: 29 Mar 2014
    developed with YouTube
    Ricky Martin - Come With Me (Official)
    3:36

    Ricky Martin - Come With Me (Official)

    • Order:
    • Duration: 3:36
    • Uploaded Date: 21 Aug 2013
    • views: 40243825
    Come With Me (Official) Published on Aug 21, 2013 Official music video by Ricky Martin performing Come With Me. (C) 2013 RM Enterprise Buy “Come With Me” now on iTunes: https://itunes.apple.com/us/album/com... Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com
    https://wn.com/Ricky_Martin_Come_With_Me_(Official)
    Ricky Martin - Come With Me (Audio)
    3:36

    Ricky Martin - Come With Me (Audio)

    • Order:
    • Duration: 3:36
    • Uploaded Date: 19 Jun 2013
    • views: 2199957
    Music video by Ricky Martin performing Come With Me Audio. (C) 2013 Sony Music Entertainment US Latin LLC #RickyMartin #ComeWithMe #Vevo #LatinPop #OfficialAudio
    https://wn.com/Ricky_Martin_Come_With_Me_(Audio)
    Ricky Martin - Come With Me (En Vivo)
    3:39

    Ricky Martin - Come With Me (En Vivo)

    • Order:
    • Duration: 3:39
    • Uploaded Date: 25 Jul 2013
    • views: 8286125
    Music video by Ricky Martin performing Come With Me. (C) 2013 Sony Music Entertainment US Latin LLC #RickyMartin #ComeWithMe #Vevo #LatinPop #EnVevo
    https://wn.com/Ricky_Martin_Come_With_Me_(En_Vivo)
    Ricky Martin - Come With Me (Lyric Video)
    3:33

    Ricky Martin - Come With Me (Lyric Video)

    • Order:
    • Duration: 3:33
    • Uploaded Date: 27 Jun 2013
    • views: 582119
    Come With Me (Official) https://www.youtube.com/watch?v=Q6AOfdPhOHo Published on Aug 21, 2013 Official music video by Ricky Martin performing Come With Me. (C) 2013 RM Enterprise Buy ôCome With Meö now on iTunes: http://smarturl.it/ComeWithMe Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com" #RickyMartin #ComeWithMe #Vevo #LatinPop #OfficialLyric
    https://wn.com/Ricky_Martin_Come_With_Me_(Lyric_Video)
    Come with Me
    3:38

    Come with Me

    • Order:
    • Duration: 3:38
    • Uploaded Date: 12 Nov 2019
    • views: 134510
    Provided to YouTube by Sony Music Latin Come with Me · Ricky Martin Come with Me ℗ 2013 Sony Music Entertainment US Latin LLC Released on: 2013-06-14 Background Vocal, Keyboards, Composer, Lyricist, Mixing Engineer, Programmer: Anthony Egizii Background Vocal, Composer, Lyricist: David Musumeci Background Vocal, Composer, Lyricist: Ilan Kidron Producer: DNA Engineer: Adrian Breakspear Auto-generated by YouTube.
    https://wn.com/Come_With_Me
    Ricky Martin - Come With Me Lyrics
    3:41

    Ricky Martin - Come With Me Lyrics

    • Order:
    • Duration: 3:41
    • Uploaded Date: 14 Apr 2014
    • views: 361371
    Come With Me By Ricky Martin
    https://wn.com/Ricky_Martin_Come_With_Me_Lyrics
    Ricky Martin - Come With Me (Spanglish Version)
    3:37

    Ricky Martin - Come With Me (Spanglish Version)

    • Order:
    • Duration: 3:37
    • Uploaded Date: 21 Aug 2013
    • views: 12503598
    Come With Me (Spanglish) Published on Aug 21, 2013 Music video by Ricky Martin performing Come With Me (Spanglish version). (C) 2013 RM Enterprise Buy “Come With Me” (Spanglish) now on iTunes: https://itunes.apple.com/us/album/com... Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.pridecube.com/profile/RickyMa... http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com
    https://wn.com/Ricky_Martin_Come_With_Me_(Spanglish_Version)
    Ricky Martin Performs Come With Me: The Voice Australia Season 2
    3:48

    Ricky Martin Performs Come With Me: The Voice Australia Season 2

    • Order:
    • Duration: 3:48
    • Uploaded Date: 17 Jun 2013
    • views: 6189046
    Ricky Martin performs his new single 'Come With Me' in a worldwide exclusive performance at The Voice Grand Finale. See more at http://www.thevoice.com.au on web, tablet and mobile, or buy the tracks on iTunes http://bit.ly/18cE8GN http://facebook.com/thevoiceau http://twitter.com/thevoiceau #thevoiceau http://instagram.com/TheVoiceAU http://thevoiceau.tumblr.com http://pinterest.com/thevoiceau http://plus.google.com/+thevoiceau http://storify.com/thevoiceau
    https://wn.com/Ricky_Martin_Performs_Come_With_Me_The_Voice_Australia_Season_2
    #MBCTheVoice - Ricky Martin- Come With Me
    3:39

    #MBCTheVoice - Ricky Martin- Come With Me

    • Order:
    • Duration: 3:39
    • Uploaded Date: 29 Mar 2014
    • views: 1525652
    شاهد الحلقة الكاملة وتعليق المدربين على شاهد.نت http://ow.ly/s7bdg The Voice أحلى صوت http://www.mbc.net/thevoice http://www.facebook.com/MBCTheVoice http://www.twitter.com/MBCTheVoice http://www.instagram.com/MBCTheVoiceInsta http://plus.google.com/+mbcthevoice https://www.keek.com/mbcthevoice MBC1 http://www.mbc.net/mbc1 http://www.facebook.com/MBC1tv http://twitter.com/mbc1tweets MBC MASR http://www.mbc.net/mbcmasr http://www.facebook.com/mbcmasr http://twitter.com/mbcmasr Shahid.net http://www.shahid.net http://www.facebook.com/shahidvod http://www.twitter.com/shahidvod
    https://wn.com/Mbcthevoice_Ricky_Martin_Come_With_Me
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Special D - Come With Me (Official Video)

    Official video for the UK release of Special D "Come With Me". More Classics here ➠ http://clb.land/classix
    2:40
    Special D - Come With Me (Official Video)
    Official video for the UK release of Special D "Come With Me". More Classics here ➠ http:/...
    published: 10 Jun 2008
    Play in Full Screen
    3:52
    COME WITH ME - Special D
    I GET BORD....
    published: 29 Jul 2007
    Play in Full Screen
    6:10
    Puff Daddy - Come With Me (Album Version)
    Artist: Puff Daddy / Jimmy Page Song Title: Come With Me (Album Version) Album/Year: Go...
    published: 08 Dec 2012
    Play in Full Screen
    7:09
    Puff Daddy - Come With Me - Godzilla soundtrack (song uncensored)
    Puff Daddy featuring Jimmy Page - "Come With Me" (1998 OST music video with lyrics) --- ht...
    published: 31 Mar 2014
    Play in Full Screen
    3:36
    Ricky Martin - Come With Me (Official)
    Come With Me (Official) Published on Aug 21, 2013 Official music video by Ricky Martin per...
    published: 21 Aug 2013
    Play in Full Screen
    6:08
    Godzilla The Album: [1998] Puff Daddy and Jimmy Page: Come With Me
    Since my first video of this won't play, I re-uploaded it. All rights belong to their prop...
    published: 09 Nov 2013
    Play in Full Screen
    4:38
    Shai - Come With Me
    Music video by Shai performing Come With Me. (C) 1995 Gasoline Alley Records Inc.
    published: 30 Nov 2009
    Play in Full Screen
    3:30
    Surfaces - Come With Me (Official Audio)
    Surfaces - Come With Me (Official Audio) Official Audio for "Come With Me” by Surfaces Do...
    published: 25 Jun 2021
    Play in Full Screen
    6:26
    Come With Me (Original Mix)
    Provided to YouTube by Kontor New Media Come With Me (Original Mix) · Nora En Pure Come ...
    published: 06 Nov 2014
    Play in Full Screen
    3:31
    Patti Austin & James Ingram - Baby, Come To Me • TopPop
    James Edward Ingram (February 16, 1952 – January 29, 2019) was an American singer, songwri...
    published: 22 Oct 2015
    Play in Full Screen

    Come with Me

    Come with Me may refer to:

  • Come with Me (EP), a 2008 EP by Bobby Valentino
  • "Come with Me" (Ricky Martin song), 2013
  • "Come with Me" (Dappy song), featuring Dawood, Retro, and Margs, 2012
  • "Come with Me" (Kumi Koda song), 2003
  • "Come with Me" (Phil Collins song), 2003
  • "Come with Me" (Puff Daddy song), featuring Jimmy Page, 1998
  • "Come with Me" (Sammie song), 2007
  • "Come with Me" (Waylon Jennings song), 1979
  • "Come with Me", a song by Amerie from Touch
  • "Come with Me", a song by Britt Love
  • "Come with Me", a song by Flo Rida from Only One Flo (Part 1)
  • "Come with Me", a song by Jay Sean from Me Against Myself
  • "Come with Me", a song by Special D. from Reckless
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Ricky Martin - Come With Me (Official)

    Come With Me (Official) Published on Aug 21, 2013 Official music video by Ricky Martin performing Come With Me. (C) 2013 RM Enterprise Buy “Come With Me” now on iTunes: https://itunes.apple.com/us/album/com... Also visit: http://www.rickymartinmusic.com http://www.rickymartinfoundation.org http://www.facebook.com/RickyMartinOfficialPage http://www.twitter.com/ricky_martin http://www.ilike.com/artist/Ricky+Martin http://www.youtube.com/rickymartin http://www.myspace.com/rickymartin http://www.weibo.com/officialrickymartin http://www.postcardsfromthestars.com
    3:36
    Ricky Martin - Come With Me (Official)
    Come With Me (Official) Published on Aug 21, 2013 Official music video by Ricky Martin per...
    published: 21 Aug 2013
    Play in Full Screen
    3:36
    Ricky Martin - Come With Me (Audio)
    Music video by Ricky Martin performing Come With Me Audio. (C) 2013 Sony Music Entertainme...
    published: 19 Jun 2013
    Play in Full Screen
    3:39
    Ricky Martin - Come With Me (En Vivo)
    Music video by Ricky Martin performing Come With Me. (C) 2013 Sony Music Entertainment US ...
    published: 25 Jul 2013
    Play in Full Screen
    3:33
    Ricky Martin - Come With Me (Lyric Video)
    Come With Me (Official) https://www.youtube.com/watch?v=Q6AOfdPhOHo Published on Aug 21, ...
    published: 27 Jun 2013
    Play in Full Screen
    3:38
    Come with Me
    Provided to YouTube by Sony Music Latin Come with Me · Ricky Martin Come with Me ℗ 2013...
    published: 12 Nov 2019
    Play in Full Screen
    3:41
    Ricky Martin - Come With Me Lyrics
    Come With Me By Ricky Martin
    published: 14 Apr 2014
    Play in Full Screen
    3:37
    Ricky Martin - Come With Me (Spanglish Version)
    Come With Me (Spanglish) Published on Aug 21, 2013 Music video by Ricky Martin performing ...
    published: 21 Aug 2013
    Play in Full Screen
    3:48
    Ricky Martin Performs Come With Me: The Voice Australia Season 2
    Ricky Martin performs his new single 'Come With Me' in a worldwide exclusive performance a...
    published: 17 Jun 2013
    Play in Full Screen
    3:39
    #MBCTheVoice - Ricky Martin- Come With Me
    شاهد الحلقة الكاملة وتعليق المدربين على شاهد.نت http://ow.ly/s7bdg The Voice أحلى صوت htt...
    published: 29 Mar 2014
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×