- published: 08 Mar 2010
- views: 515951710
'+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; })); }); -->
Alejandro Fernández Abarca (Spanish pronunciation: [aleˈxandro feɾˈnandes]; born 24 April 1971) is a Mexican singer.
Nicknamed as "El Potrillo" (The Colt) by the media and his fans, he has sold over 30 million albums worldwide. Alejandro is the son of the ranchera singer Vicente Fernández. He originally specialized in traditional, earthy forms of Mexican folk music, such as mariachi and ranchera. He has branched out into pop music with great success.
His first public appearance was in 1976 in one of his father's shows. Alejandro was meant to perform the song "Alejandra" but in the middle of the song he forgot the lyrics, started crying, and suffered a panic attack. His father Vicente Fernandez got on stage and helped by singing along with him.
Fernández released his first album, Alejandro Fernandez under Sony Music. The main hits were "Necesito olvidarla", "Brumas" and "Equivocadamente". With this material, Alejandro began a tour in Mexico and some cities of the United States. In 1993, he performed with his father in a concert at the Palacio de los Deportes, and he continued for a season at the famous Teatro Blanquita of Mexico City. The same year Fernández released the successful Piel De Niña, directed by Pedro Ramires. The songs "Piel de niña", "A la vera del camino", and "Cascos ligeros" are some of the hits of the album. At the Lo Nuestro Awards of 1993 Fernández was nominated for Male Artist, New Artist and Regional Mexican Album of the Year for his debut album, winning none.
Alejandro Fernández (born January 26, 1996) is a Colombian race car driver. He currently participates in the North American karting as well as the Red Bull Global Rallycross Championship in the class GRC Lites.
His career in the world of motorsports began at age 16 when his family bought him his first Go-Kart as a birthday present. Two months later Fernández began to race in his first competitions in the United States.
Since 2012 he has raced in several championships. In 2012 he raced in championships like Challenge of the Americas, California Prokart Challenge, SKUSA Pro Tour, International Karting Federation (IKF), among others. The following year Alejandro competed in the Florida Winter Tour, U.S. Grand Nationals, Los Angeles Kart Championship (LAKC) as well as championships in his homeland, including the Rotax Max Challenge Colombia and La Carrera de las Estrella which was organized by Fundación Sonrisas in Medellín.
Fernández also ran in different classes of motorsports, such as the F2000, Mazda Pro, Rallycars, Trophy Trucks and Sportscars.
Alejandro Fernandez is the debut self-titled album recorded by Mexican singer Alejandro Fernández. Produced by Pedro Ramírez. The hit singles from this album are: "Necesito Olvidarla", "Equivocadamente" and "Brumas" (for the latter Alejandro Fernández shot a music video). It was nominated for Regional Mexican Album of the Year at the Lo Nuestro Awards of 1993.
¡Escucha «Me Dediqué a Perderte» del álbum «A Corazón Abierto» en tu plataforma favorita! Escucha a Alejandro Fernández y suscríbete a su canal en YouTube Music: → http://smarturl.it/YTMCAlejandroFdz Mira en YouTube la playlist de éxitos de Alejandro Fernández y ve sus mejores videos: → Playlist: https://www.youtube.com/playlist?list=PLyUrByHiYET9rVK5avWadARmhhq4jzXOj → Mátalas (Un Azteca en el Azteca): https://www.youtube.com/watch?v=dpiBMVGdFvc&list=PLyUrByHiYET9rVK5avWadARmhhq4jzXOj&index=13&t=0s → Nube Viajera: https://www.youtube.com/watch?v=ZTPVeup5UFk&list=PLyUrByHiYET9rVK5avWadARmhhq4jzXOj&index=12&t=0s → Como Quien Pierde Una Estrella: https://www.youtube.com/watch?v=MXlwuZ_nEk0&list=PLyUrByHiYET9rVK5avWadARmhhq4jzXOj&index=7&t=0s Y no te olvides de seguir a Alejandro Fernánde...
iTunes: http://bit.ly/137msp4 Amazon: http://amzn.to/13BjixW Music video by Alejandro Fernández ft. Christina Aguilera performing Hoy Tengo Ganas De Ti. (C) 2013 Universal Music Latino
Alejandro Fernández - Caballero (Official Video) Subscribe to Alejandro Fernández's YouTube channel here: https://www.youtube.com/user/alejandrofernandez?sub_confirmation=1 Listen to "Caballero" here: https://umle.lnk.to/CaballeroYD Follow Alejandro Fernández: Official Site: http://www.alejandrofernandez.com/ Facebook: https://www.facebook.com/alejandrofernandezoficial/ Twitter: https://twitter.com/alexoficial Instagram: https://www.instagram.com/alexoficial Lyrics: Desde el día en que te miré Ibas bien acompañada Ibas con él de la mano De repente te reías, de reojo me mirabas No es mi gran amigo él Pero claro lo conozco Y no suelo ser aquel Que no le importa con quien, trato de ser respetuoso Ay, pero ven tantito Es la única vez que te voy a contar mis secretos Si no tuvi...
PLS.. 1000 SUBCRIBE 🔑🔑🔑 Por favor, 💖💖💖💖 ROMÁNTICAS EN ESPAÑOL https://youtu.be/AJz_xxKFPRw 🎧 Se recomienda el uso de auriculares: Cuando se usan auriculares, disfrutará de la calidad rica, equilibrada y plena de sonido. Sin ellos, el efecto de las ondas se disuelve en el espacio de la habitación y no puede afectar directamente al cuerpo. En cualquier caso, si no tiene auriculares, la música puede ser escuchada sin problemas y beneficios (aunque en menor medida), que depende de la calidad de los altavoces que tenga. .................................................. ✨ Síguenos en nuestras redes sociales ✨ 👉 Facebook: https://www.facebook.com/green-musica-107927881585713 👉 Instagram: https://www.instagram.com/green_musica/ 👉 Twitter: https://mobile.twitter.com/greenmusic17 .................
Vídeo oficial de Alejandro Fernández de su tema Si Tú No Vuelves. Haz clic aquí para escuchar a Alejandro Fernández en Spotify: http://smarturl.it/AFernandezSpotify?IQid=AFSiTuV Incluido en 15 Años De Éxitos. Haz clic aquí para comprar el track o el álbum en iTunes: http://smarturl.it/AFernandez15iTunes?IQid=AFSiTuV Google Play: http://smarturl.it/AFSiTuPlay?IQid=AFSiTuV Disfruta de más música de Alejandro Fernández aquí: http://smarturl.it/AFernandezStream?IQid=AFSiTuV Más de Alejandro Fernández Hoy Tengo Ganas De Ti: https://youtu.be/Z81hsLIY1sQ Me Dedique A Perderte: https://youtu.be/05dcxPp62BQ Estuve: https://youtu.be/PTKmZp4O8EQ Haz clic aquí http://smarturl.it/ilovepophitsMX?IQid=AFSiTuV para escuchar más vídeos de buen Pop en español. Sigue a Alejandro Fernández Página web: htt...
Follow Alejandro Fernández: Official Site: http://www.alejandrofernandez.com Facebook: https://www.facebook.com/alejandrofer... Twitter: https://twitter.com/alexoficial Instagram: https://www.instagram.com/alexoficial LETRA Sé muy bien que te vas y no piensas hablar Y que al menos pretendes nunca regresar Pero vida déjame que te bendiga Porque así es la vida y sé que volverás Que ha llegado el momento en que quieres volar Comparar otros besos y formas de amar Soy humano y lo entiendo No detengo tus anhelos de probar tu libertad Sé que existe alguien más que busca tu amor Y que es algo normal Que estas en tu derecho Y no lo puedo evitar Pero no lo beses como a mí Pero no lo toques nunca así Pues yo nunca beso como a ti te beso Cuando me tropiezo por ahí Pero no lo mires como a mi ...
Alejandro Fernández - Te Olvidé (Official Video) Subscribe to Alejandro Fernández's YouTube channel here: https://www.youtube.com/user/alejandrofernandez?sub_confirmation=1 Listen to "Te Olvidé" here: https://afernandez.lnk.to/TeOlvide Follow Alejandro Fernández: Official Site: http://www.alejandrofernandez.com/ Facebook: https://www.facebook.com/alejandrofernandezoficial/ Twitter: https://twitter.com/alexoficial Instagram: https://www.instagram.com/alexoficial Lyrics: Yo también sé jugar y me hubiera divertido es mejor que llorar y sentirme mal herido Si me dolió tu adiós para qué voy a negarlo pero fue lo mejor viví un infierno a tu lado Llorar, llorar por ti fue lo peor que pude hacer Tal vez mi error más grande fue lo mucho que te amé y hoy te pido disculpas si un dìa dije que ...
Music video by Alejandro Fernández performing Eso Y Más (En Vivo).© 2020 UMG Recordings, Inc.
Alejandro Fernández, Christian Nodal - Duele Subscribe to Alejandro Fernández's YouTube channel here: https://smarturl.it/AlejandroFernandezYT Follow Alejandro Fernández: Official Site: http://www.alejandrofernandez.com/ Facebook: https://www.facebook.com/alejandrofernandezoficial Twitter: https://twitter.com/alexoficial Instagram: https://www.instagram.com/alexoficial Letra: Duele – Alejandro Fernández, Christian Nodal Letra y música por: Christian Nodal, Edgar Barrera Despierto y solo veo botellas vacías y en mi cuarto está tú aroma todavía, De un montón de nuestras fotos junto con mis sueños rotos en el piso. Tratando de curarme las heridas He probado varios labios y caricias, Tu ya hiciste nueva vida, y yo sigo todavía con lo mismo y no es lo mismo Y me duele, porque yo ando...
Alejandro Fernández Abarca (Spanish pronunciation: [aleˈxandro feɾˈnandes]; born 24 April 1971) is a Mexican singer.
Nicknamed as "El Potrillo" (The Colt) by the media and his fans, he has sold over 30 million albums worldwide. Alejandro is the son of the ranchera singer Vicente Fernández. He originally specialized in traditional, earthy forms of Mexican folk music, such as mariachi and ranchera. He has branched out into pop music with great success.
His first public appearance was in 1976 in one of his father's shows. Alejandro was meant to perform the song "Alejandra" but in the middle of the song he forgot the lyrics, started crying, and suffered a panic attack. His father Vicente Fernandez got on stage and helped by singing along with him.
Fernández released his first album, Alejandro Fernandez under Sony Music. The main hits were "Necesito olvidarla", "Brumas" and "Equivocadamente". With this material, Alejandro began a tour in Mexico and some cities of the United States. In 1993, he performed with his father in a concert at the Palacio de los Deportes, and he continued for a season at the famous Teatro Blanquita of Mexico City. The same year Fernández released the successful Piel De Niña, directed by Pedro Ramires. The songs "Piel de niña", "A la vera del camino", and "Cascos ligeros" are some of the hits of the album. At the Lo Nuestro Awards of 1993 Fernández was nominated for Male Artist, New Artist and Regional Mexican Album of the Year for his debut album, winning none.
Si he sabido amor
Que te vuelvo a ver
Como en un desierto
Muriendo de sed
Bajo el sol ardiente
De la soledad
Quemándote toda
En tu sed de amar
Si he sabido amor
Que te vuelvo a ver
Como una cañada
Llena de humedad
Y repite el eco
Y el eco se va
Sin que nadie escuche
Tu risa, tu hablar
Te juro que no
Te dejo jamás
Porque como estás
Hoy me encuentro igual
Sin poder hallar
Quien dé de beber
A mi corazón
Que muere de sed
Te juro que no
te dejo jamás
Porque estaba loco
De tanto esperar
Y hoy que estas aquÃ
Vamos a saciar
Estas ansias locas
Que tengo de amar
Si he sabido amor
Que te vuelvo a ver
Con tanta tristeza
Con tanto dolor
Con tantas heridas
Que el tiempo te dio
Con las alas rotas
Roto el corazón
Te juro que no...