- published: 24 Oct 2007
- views: 4739302
'+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; })); }); -->
HIDDEN ERROR: Usage of "death_cause" is not recognized
Wanda Lavonne Jackson (born October 20, 1937) is an American singer, songwriter, pianist and guitarist who had success in the mid-1950s and 1960s as one of the first popular female rockabilly singers and a pioneering rock and roll artist. She is known to many as the "Queen of Rockabilly" (or "First Lady of Rockabilly").
Jackson mixed country music with fast-moving rockabilly, often recording them on opposite sides of a record. As rockabilly declined in popularity in the mid-1960s, she moved to a successful career in mainstream country music with a string of hits between 1966 and 1973, including "Tears Will Be the Chaser for Your Wine", "A Woman Lives for Love" and "Fancy Satin Pillows".
She has enjoyed a resurgence of popularity among rockabilly revivalists in Europe and younger Americana fans, and was inducted into the Rock and Roll Hall of Fame as an Early Influence in 2009.
Jackson was born to Tom Robert Jackson and Nellie Vera Jackson (December 19, 1913 – January 14, 2011) in Maud, Oklahoma, in 1937, but has lived much of her life in Oklahoma City. Her father, a musician, moved the family to Bakersfield, California, during the 1940s in hopes of a better life. Two years later, he bought Jackson a guitar and encouraged her to play. He also took her to see performances by Spade Cooley, Tex Williams and Bob Wills, which left a lasting impression. In 1948, when she was 11, the family moved back to Oklahoma. In 1956, she won a talent contest which led to her own radio program, soon extended by 30 minutes.
"Honey Don't" is a song written by Carl Perkins, originally released on January 1, 1956 as the B-side of the "Blue Suede Shoes" single, Sun 234. Both songs became rockabilly classics. Bill Dahl of Allmusic praised the song saying, "'Honey Don't' actually outclasses its more celebrated platter-mate in some ways." It has been covered by more than 20 other artists, including The Beatles, Ronnie Hawkins and Johnny Rivers. The song also appeared in the movies Prince of Tides, Diner, and Perfect Sisters.
According to David McGee, author of Go, Cat, Go! The Life and Times of Carl Perkins, the King of Rockabilly, Carl Perkins first brought the song to a rehearsal with his band which at the time comprised the Perkins brothers and W.S. Holland:
When Carl first played the song to Jay, Jay protested what sounded to him like an odd chord choice, going to a C7 chord after the E instead of the natural blues progression choice of A. At first, Jay refused to go along, but Carl convinced him it was something different, and today the chord choice is one of the most interesting aspects of the song.
The Fabulous Wanda jackson on Town Hall Party in 1958. "Keep your cotton-pickin' fingers off my curly hair!"
Here I go, Going down, down, down, My mind is a blank, My head is spinning around and around, As I go deep into the funnel of love. It's such a crazy, crazy feeling, I get weak in the knees, My poor old head is a reelin', As I go deep into the funnel of love. I tried and I tried, to run and hide, I even tried to run away, Ya just can't run from the funnel of love, It's gonna get ya someday. It's such a crazy, crazy feeling, I get weak in the knees, My poor old head is a reelin', As I go deep into the funnel of love. I tried and I tried, to run and hide, I even tried to run away, Ya just can't run from the funnel of love, It's gonna get ya someday. Here I go, going down, down, down, My mind is a blank, My head is spinning around and around, As I go deep...
Provided to YouTube by Universal Music Group Funnel Of Love · Wanda Jackson The Capitol Singles 1959-1961 ℗ A Capitol Nashville Records release; ℗ 1960 Capitol Records, LLC Released on: 2020-10-23 Composer Lyricist: Kent Westberry Composer Lyricist: Clyde McCoy Auto-generated by YouTube.
Not exactly the most pc song, but she sure as hell rocks it! Sounds better in stereo, don't you think?
Right or Wrong by Wanda Jackson STUDIO VERSION - 1961 Lyrics Right or wrong I'll be with you I'll do what you ask me to For I believe that I belong By your side, right or wrong Right or wrong it's got to be Always you, always me Won't you take me along To be with you right or wrong? If it's right for me to love you It can't be wrong for me to care If you will say you love me My life with you I'll share Right or wrong, day by day All my love, all the way For I believe that I belong By your side, right or wrong Songwriters: Wanda Jackson Right or Wrong lyrics © Sony/ATV Music Publishing LLC . Right or Wrong (Wanda Jackson song) From Wikipedia, the free encyclopedia "Right or Wrong" Single by Wanda Jackson from the album Right or Wrong B-side "Funnel of Love"[1] Released April 1961 Fo...
http://www.youtube.com/user/capriaschesi
(Written by Jenny Lou Carson) 1st. Recorded 20 September 1944 by Tex Ritter 30 October 1944 by Jenny Lou Carson 1945 by Ernest Tubb 1949 by Bill Owens Kenny Roberts Ivory Joe Hunter 1955 by Rosalie Allen 1959 by Kitty Wells 1960 by Hank Locklin 1962 by Sue Thompson 1966...
Wanda Jackson's "Thunder On the Mountain" 7" single is available here: https://thirdmanstore.com/wanda-jackson-thunder-on-the-mountain-7-vinyl Wanda Jackson's "The Party Ain't Over" is available on 12" vinyl and CD here: https://thirdmanstore.com/wanda-jackson-the-party-ain-t-over The official music video for Wanda Jackson's "Thunder On The Mountain," directed by "thirtytwo" from PulseFilms. Follow Third Man: Instagram: https://www.instagram.com/thirdmanrecords/ Facebook: https://www.facebook.com/ThirdManRecords TikTok: https://www.tiktok.com/@thirdmanrecords #thirdmanrecords #wandajackson
08.04.2024 | Only Jesus | #BayshoreNazarene LIVE Please consider Subscribing if this is your first time visiting us! Visit our website at: https://www.bayshorenazarene.com/ Find and Like us on Facebook: https://www.facebook.com/bayshorenazarene/ See all of our videos on YouTube: https://www.youtube.com/@BayshoreNazareneFL Drop your Tithe's & Offerings via Online: https://www.egsnetwork.com/gift2/?giftid=4B5A915D721B46A Listen to all our music on a YouTube Playlist: https://www.youtube.com/playlist?list=PLm6J9v-kO8Pb9K59yLvbYL4JeQAyQcsDD All music is licensed: CCLI Church Copyright License® #865983 CCLI Streaming License™ #21886682 Welcome, Announcements, and Prayer: Follow along with us by using the Digital Bulletin at: faithlife.com/bayshorenaz/bulletins Granny Square...
WANDA JACKSON LIVE! Get on board and enjoy a great show with The Rockabilly Queen and Country Super Star WANDA JACKSON live! Plus the whole Marty Stuart´s gang, Connie Smith, Leroy Troy, and the Superlatives!!! Marty and The Superlatives open with 'Keep Her Off Your Mind' - Rock And Roll Hall Of Famer Wanda Jackson sings 'I Gotta Know' - Connie Smith sings 'Did We Have To Come This Far To Say Goodbye' - Connie joins Wanda for 'Silver Thread And Golden Needles' - Leroy Troy sings 'The Streamline Cannonball' - Marty performs the lovely and touching 'Porter Wagoner's Grave' - Wanda Jackson closes with 'Let's Have A Party'. Wanda Lavonne Jackson (born October 20, 1937) is a retired American singer, songwriter, pianist and guitarist who had success in the mid-1950s and 1960s as one of the f...
Provided to YouTube by Universal Music Group Honey Don't (Remastered 2009) · The Beatles Beatles For Sale ℗ 2009 Calderstone Productions Limited (a division of Universal Music Group) Released on: 1964-12-04 Associated Performer, Vocals, Drums, Tambourine: Ringo Starr Associated Performer, Guitar: George Harrison Associated Performer, Guitar: John Lennon Associated Performer, Bass Guitar: Paul McCartney Producer: George Martin Composer Lyricist: Carl Perkins Auto-generated by YouTube.
Carl Perkins - Honey Don't Recorded Live: 9/9/1985 - Capitol Theatre - Passaic, NJ More Carl Perkins at Music Vault: http://www.musicvault.com Subscribe to Music Vault on YouTube: http://goo.gl/DUzpUF
Provided to YouTube by IDOL Honey Don’t · Carl Perkins Deluxe: Greatest Hits - Carl Perkins ℗ Puzzle Productions Released on: 2012-09-10 Lyricist: Perkins Composer: Perkins Auto-generated by YouTube.
Carl Perkins Honey Don’t Live Video 1956 Carl Perkins Honey Don’t Lyrics Well how can you say you will when you won't Say you do, baby, when you don't? Let me know, honey, how you feel Tell the truth, now, is love real? But oh well, honey don't, well, honey don't Honey don't, honey don't, honey don't I say you will when you won't, oh honey, don't Well, I love you, baby, and you ought to know I like the way you wear your clothes If it's in a batch you were so doggone sweet You got that sand all over your feet Well, sometimes I love you on a Saturday night Sunday morning, you don't look right You've been out painting the town Uh baby, been stepping around https://genius.com/Carl-perkins-honey-dont-lyrics "Honey Don't" is a song written by Carl Perkins, originally released on January 1, 1...
Paul McCartney during his One on One Tour at the Olympic Stadium in Munich on 10th June 2016. Paul McCartney während seiner One on One Tour am 10.6.2016 im Olympiastadion in München.
Provided to YouTube by Universal Music Group Honey Don't (Live At The BBC For "Pop Go The Beatles" / 3rd September, 1963) · The Beatles Live At The BBC ℗ 2013 BBC, under exclusive licence to Calderstone Productions Limited (a division of Universal Music Group) Released on: 1994-11-30 Associated Performer, Vocals, Guitar: John Lennon Associated Performer, Vocals, Bass Guitar: Paul McCartney Associated Performer, Vocals, Guitar: George Harrison Associated Performer, Drums: Ringo Starr Producer: Ian Grant Composer Lyricist: Carl Perkins Auto-generated by YouTube.
Writer: Carl Lee Perkins ● Releasing date: December 1955 [Usa]; April 1956 [UK] ● Format: 7" single ● Label: Sun Records (#234) [Usa]; London (HLU 8271) [UK] ● A-side: "Blue suede shoes" ● Recording: Sun Studio, Memphis, December 1955 ● Producer: Sam Phillips ● Musicians: Carl Perkins (lead guitar, vocals), Jay Perkins (acoustic guitar, backing vocals), Clayton Perkins (standup bass), W.S. Holland (drums) ● Other versions: Blinkit; Eugene Chadbourne; Elvis Costello; Billy 'Crash' Craddock; Mac Curtis; Ben Folds Five; Ronnie Hawkins; Homer & the Dont's; Wanda Jackson; Memphiss Rockabilly; Ready Teds; Rhythm & Blues Inc.; Johnny Rivers; Raul Seixas; Shakin' Stevens & the Sunsets; Skitzo; T. Rex; Joe Walsh & Steve Earle. It's NOT the same song released by Fire Session in 1970. NO COPYRIGHT...
YO YO HONEY SINGH - MILLIONAIRE MASHUP | BLUETOOTH KING | AP DHILLON | LATEST PUNJABI MASHUP 2024 Mashup - Faiz Visual - Himanshu #YoYoHoneySingh #HoneySingh #YoYo #HoneySinghSongs #HoneySinghNewSong #YoYoHoneySinghMusic #HoneySinghHitSongs #HoneySingh2024 #HoneySinghRap #HoneySinghPartySongs #MillionaireYoYoHoneySingh #HoneySinghMillionaire #YoYoHoneySinghMillionaire #MillionaireSong #HoneySingh2024 #MillionaireMusicVideo #HoneySinghHits #YoYoHoneySinghHits #MillionaireHoneySinghLyrics #YoYoHoneySinghNewSong If you like this video then don't forget to LIKE, SHARE & SUBSCRIBE. Follow Faiz Music On :- ►Instagram :- ►YouTube :- NOTE :- Reupload Prohibited Any Query Regarding About My Content Please, DM Me On Social Media Or Mail Me Keep Love And Supporting............................
HIDDEN ERROR: Usage of "death_cause" is not recognized
Wanda Lavonne Jackson (born October 20, 1937) is an American singer, songwriter, pianist and guitarist who had success in the mid-1950s and 1960s as one of the first popular female rockabilly singers and a pioneering rock and roll artist. She is known to many as the "Queen of Rockabilly" (or "First Lady of Rockabilly").
Jackson mixed country music with fast-moving rockabilly, often recording them on opposite sides of a record. As rockabilly declined in popularity in the mid-1960s, she moved to a successful career in mainstream country music with a string of hits between 1966 and 1973, including "Tears Will Be the Chaser for Your Wine", "A Woman Lives for Love" and "Fancy Satin Pillows".
She has enjoyed a resurgence of popularity among rockabilly revivalists in Europe and younger Americana fans, and was inducted into the Rock and Roll Hall of Fame as an Early Influence in 2009.
Jackson was born to Tom Robert Jackson and Nellie Vera Jackson (December 19, 1913 – January 14, 2011) in Maud, Oklahoma, in 1937, but has lived much of her life in Oklahoma City. Her father, a musician, moved the family to Bakersfield, California, during the 1940s in hopes of a better life. Two years later, he bought Jackson a guitar and encouraged her to play. He also took her to see performances by Spade Cooley, Tex Williams and Bob Wills, which left a lasting impression. In 1948, when she was 11, the family moved back to Oklahoma. In 1956, she won a talent contest which led to her own radio program, soon extended by 30 minutes.
Your tender love just keeps growing your tender love you keep showing
Every day darling and every way yes anyone can see your tender love for me
Tender love yet strong enough to guide us through any stormy years
Your tender love is like a gentle wind your tender love has no end
All my love to you for all my life I'll always try to prove my tender love for you
I'll always try to prove my tender love for you