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

Jana Kramer

Jana Rae Kramer (born December 2, 1983) is an American actress and country music singer. She is best known for her role as Alex Dupre on the television series One Tree Hill. Kramer began a country music career in 2012 with the single "Why Ya Wanna" from her self-titled debut album for Elektra Records.

Early life

Kramer was born in Rochester Hills, Michigan, United States, to Nora and Martin Kramer. She is of German Chilean, Croatian and French ancestry. Jana has one brother Steve who is a police officer. Jana attended Rochester Adams High School. She speaks some German.

Career

2002–11: acting career and record deal

In 2002, Kramer made her acting debut in the low-budget independent horror film Dead/Undead. The following year Kramer guest appeared on All My Children, which marked Kramer's television debut. Kramer has since continued to appear in a number of television shows such as CSI: Crime Scene Investigation, Grey's Anatomy, Private Practice and CSI: NY. She has also had small supporting roles in films such as Click, Prom Night and Spring Breakdown.

Jana Kramer (album)

Jana Kramer is the debut album by American actress and country music artist Jana Kramer. It was released on June 5, 2012 via Elektra Records. The album was produced by Scott Hendricks. Its first single, "Why Ya Wanna," was released in January 2012. It also includes the previously released digital singles "Whiskey" and "What I Love About Your Love" and "I Won't Give Up" as a digital bonus track.

Background

In 2002, Kramer made her acting debut in the low budget independent horror film Dead/Undead. The following year Kramer guest appeared on All My Children which was marked as Kramer's television debut. Kramer has since continued to appear in a number of television shows such as CSI: Crime Scene Investigation, Grey's Anatomy, Private Practice and CSI: NY. She has also had small supporting roles in films such as Click, Prom Night and Spring Breakdown. After a long career of acting, in February 2011 Kramer signed a recording contract with Elektra Records. The following month Kramer began work on her debut album. Country music producer Scott Hendricks produced the majority of the record.

Podcasts:

  • Jana Kramer - "Why Ya Wanna" (Official Music Video)

    © 2012 WMG http://www.janakramer.com Brand new self-titled album in stores NOW: http://smarturl.it/JanaKramer Official music video for Jana Kramer's "Why Ya Wanna" featured on the new self-titled album. http://twitter.com/kramergirl http://www.facebook.com/janakramermusic

    published: 06 Feb 2012
  • Jana Kramer - I Got The Boy (Official Music Video)

    Get "I've Done Love" on iTunes: http://smarturl.it/JKDoneLove Watch Jana Kramer's official "I Got The Boy" music video! Get "I Got The Boy" on iTunes: http://smarturl.it/igottheboy Stream "I Got The Boy" on Spotify: http://smarturl.it/igtbspotify http://janakramer.com http://facebook.com/janakramermusic http://twitter.com/kramergirl http://instagram.com/kramergirl

    published: 09 Apr 2015
  • Jana Kramer - I Hope It Rains (Official Music Video)

    Jana Kramer - I Hope It Rains (Official Music Video) Get Jana Kramer on iTunes: http://smarturl.it/janakramer www.janakramer.com

    published: 15 Jul 2013
  • Jana Kramer - Whiskey (Official Video)

    Get "Whiskey" on iTunes: http://smarturl.it/janakramerwhiskey www.janakramer.com © 2013 WMG

    published: 15 Jan 2013
  • Jana Kramer - The Story (Official Music Video)

    Jana Kramer's New Music Video for her new single, "The Story". Listen to Voices at: https://smarturl.it/TheStoryJK Lyrics Climb on up To mommas bed It’s just us tonight Don’t need a book and snuggle in I’m gonna share a story which I didn’t have to say About a girl who fought with all her heart but still had to walk away. Once upon a time He loved me Once upon I loved him too It all fell apart in a moment Lord I wish it wasn’t true Cause You deserved the perfect family the fairytales you know so well Instead of sittin here listening to the story I wish I didn’t have to tell I know it’s hard To see mommy cry But I promise you were We’re all gonna be alright And I need you know That you will always be loved You’re the very best chapters In the story of us Once upon a time...

    published: 26 Feb 2022
  • I Won't Give Up

    Provided to YouTube by Elektra Nashville I Won't Give Up · Jana Kramer Jana Kramer ℗ 2011 Warner Music Nashville LLC Assistant Mixing Engineer: Drew Bollman Bass Guitar: Glenn Worf Wurlitzer: Gordon Mote Unknown: Hank Williams Acoustic Guitar: Ilya Toshinsky Lead Vocals: Jana Kramer Audio Recording Engineer: Jeff Balding Digital Editor: Jim Cooper Unknown: Justin Niebank Unknown: Matt Coles Pedal Steel Guitar: Paul Franklin Background Vocals: Russell Terrell Digital Editor: Scott Hendricks Unknown: Scott Hendricks Producer: Scott Hendricks Drums, Percussion: Shannon Forrest Electric Guitar: Tom Bukovac Writer: Jana Kramer Writer: Jess Leary Writer: Kye Fleming Auto-generated by YouTube.

    published: 08 Apr 2017
  • Jana Kramer - "I've Done Love" (Official Audio)

    “I've Done Love” Available now: http://smarturl.it/JKDoneLove Spotify: https://open.spotify.com/artist/2PaRhxWFaqCUZybJDDoNrf Facebook: https://www.facebook.com/janakramermusic/# Instagram: https://www.instagram.com/kramergirl/?hl=en Twitter: https://twitter.com/kramergirl

    published: 18 Aug 2017
  • Over You by Now

    Provided to YouTube by Elektra Nashville Over You by Now · Jana Kramer Jana Kramer ℗ 2012 Warner Music Nashville LLC Fiddle, Mandolin: Aubrey Haynie Digital Editor: Ben Phillips Unknown: Ben Phillips Digital Editor: Brian David Willis Acoustic Guitar: Bryan Sutton Cello: Carole Rabinowitz Background Vocals: Carolyn Dawn Johnson Background Vocals: Catt Gravitt Unknown: Charlie Judge Keyboards: Charlie Judge String Arranger: Charlie Judge Background Vocals: Cherie Oakley Unknown: Chris Utley Dobro: Dan Dugmore Pedal Steel Guitar: Dan Dugmore Unknown: David Robinson Assistant Mixing Engineer: Drew Bollman Percussion: Eric Darken Bass Guitar: Glenn Worf Hammond B3 Organ: Gordon Mote Piano: Gordon Mote Unknown: Hank Williams Banjo: Ilya Toshinsky Acoustic Guitar: Ilya Toshins...

    published: 08 Apr 2017
  • Voices Official Audio

    Listen to Jana Kramer's new single, "Voices." “Sometimes the loudest lies we believe are the ones we tell ourselves through the voices in our head. This song is about not believing those lies and fighting those inner voices to know your true worth, “stated Kramer. “My friend Sara was there through my divorce, and when she gave me this song, I immediately became overwhelmed with emotion because in that moment all I was doing was listening to those negative voices. This song got me out of that bad place, and I am hoping it can do the same for others as well. “ Lyrics: “Voices” Lyrics I am strong I am beautiful The girl I used to be She was confident and free and happy I don’t recognize myself Or this person in the mirror Staring back at me I’m fighting voices in my head Voice...

    published: 24 Sep 2021
  • Jana Kramer: I Won't Give Up [With Lyrics]

    New Single by One Tree Hill's Jana Kramer: I Won't Give Up [I dont own this music] LYRICS:::: Don't tell me love is something you wont try again That's just not true But baby right now, maybe what you need is a friend Well I'm here for you Chorus: I will be by your side If ever you fall deep in the dead of the night When ever you call And I wont change my mind No, ill see you through And I won't give up, no I won't give up, I won't give up on you You need someone who knows you from the inside out The way I do I've seen you walk the wire, never looking down I believe in you Chorus: I will be by your side If ever you fall deep in the dead of the night When ever you call And I wont change my mind No, ill see you through And I won't give up, no I won't give up, I won't give up on you I...

    published: 08 Feb 2011
  • Jana Kramer - Circles (Official Music Video)

    The official music video for Jana Kramer's new single, "Circles". Get "I've Done Love" on iTunes: http://smarturl.it/JKDoneLove http://janakramer.com http://facebook.com/janakramermusic http://twitter.com/kramergirl http://instagram.com/kramergirl

    published: 06 Sep 2016
  • Jana Kramer - I Got the Boy (Lyrics)

    subscribe for your daily country fix 👢 https://www.youtube.com/channel/UCB1ciVNtSadQjAfJQBujkGw?sub_confirmation=1 Jana Kramer - I Got the Boy (Lyrics) [Verse 1] I saw your picture in a paper Honeymoon in Jamaica, she's a lucky girl You look so grown up in your black tux, from a ballcap in a pick up Seems like another world You and me and our big dreams, falling in love We were two kids in the backseat, all fearless and young [Chorus] I got the first kiss and she'll get the last She's got the future, I got the past I got the class ring, she got the diamond and wedding band I got the boy, and she got the man [Verse 2] Yeah there's an old you that I knew Fake IDs to get into those spring break bars Backwoods on a four wheel, hanging on tight I can still feel my racing heart And now you'...

    published: 25 Nov 2023
  • When You're Lonely

    Provided to YouTube by Elektra Nashville When You're Lonely · Jana Kramer Jana Kramer ℗ 2011 Warner Music Nashville LLC Fiddle, Mandolin: Aubrey Haynie Digital Editor: Ben Phillips Unknown: Ben Phillips Digital Editor: Brian David Willis Acoustic Guitar: Bryan Sutton Background Vocals: Carolyn Dawn Johnson Background Vocals: Catt Gravitt Unknown: Charlie Judge Background Vocals: Cherie Oakley Unknown: Chris Utley Dobro: Dan Dugmore Pedal Steel Guitar: Dan Dugmore Unknown: David Robinson Assistant Mixing Engineer: Drew Bollman Percussion: Eric Darken Bass Guitar: Glenn Worf Hammond B3 Organ: Gordon Mote Piano: Gordon Mote Unknown: Hank Williams Banjo: Ilya Toshinsky Acoustic Guitar: Ilya Toshinsky Lead Vocals: Jana Kramer Audio Recording Engineer: Jeff Balding Digital ...

    published: 08 Apr 2017
  • Jana Kramer - What I Love About Your Love (Official Video)

    http://www.janakramer.com Brand new self-titled album in stores NOW: http://smarturl.it/JanaKramer

    published: 12 Jan 2012
Jana Kramer - "Why Ya Wanna" (Official Music Video)
3:52

Jana Kramer - "Why Ya Wanna" (Official Music Video)

  • Order:
  • Duration: 3:52
  • Uploaded Date: 06 Feb 2012
  • views: 37485336
© 2012 WMG http://www.janakramer.com Brand new self-titled album in stores NOW: http://smarturl.it/JanaKramer Official music video for Jana Kramer's "Why Ya Wanna" featured on the new self-titled album. http://twitter.com/kramergirl http://www.facebook.com/janakramermusic
https://wn.com/Jana_Kramer_Why_Ya_Wanna_(Official_Music_Video)
Jana Kramer - I Got The Boy (Official Music Video)
3:25

Jana Kramer - I Got The Boy (Official Music Video)

  • Order:
  • Duration: 3:25
  • Uploaded Date: 09 Apr 2015
  • views: 48544325
Get "I've Done Love" on iTunes: http://smarturl.it/JKDoneLove Watch Jana Kramer's official "I Got The Boy" music video! Get "I Got The Boy" on iTunes: http://smarturl.it/igottheboy Stream "I Got The Boy" on Spotify: http://smarturl.it/igtbspotify http://janakramer.com http://facebook.com/janakramermusic http://twitter.com/kramergirl http://instagram.com/kramergirl
https://wn.com/Jana_Kramer_I_Got_The_Boy_(Official_Music_Video)
Jana Kramer - I Hope It Rains (Official Music Video)
3:17

Jana Kramer - I Hope It Rains (Official Music Video)

  • Order:
  • Duration: 3:17
  • Uploaded Date: 15 Jul 2013
  • views: 8081443
Jana Kramer - I Hope It Rains (Official Music Video) Get Jana Kramer on iTunes: http://smarturl.it/janakramer www.janakramer.com
https://wn.com/Jana_Kramer_I_Hope_It_Rains_(Official_Music_Video)
Jana Kramer - Whiskey (Official Video)
3:45

Jana Kramer - Whiskey (Official Video)

  • Order:
  • Duration: 3:45
  • Uploaded Date: 15 Jan 2013
  • views: 16099986
Get "Whiskey" on iTunes: http://smarturl.it/janakramerwhiskey www.janakramer.com © 2013 WMG
https://wn.com/Jana_Kramer_Whiskey_(Official_Video)
Jana Kramer - The Story (Official Music Video)
3:08

Jana Kramer - The Story (Official Music Video)

  • Order:
  • Duration: 3:08
  • Uploaded Date: 26 Feb 2022
  • views: 1426197
Jana Kramer's New Music Video for her new single, "The Story". Listen to Voices at: https://smarturl.it/TheStoryJK Lyrics Climb on up To mommas bed It’s just us tonight Don’t need a book and snuggle in I’m gonna share a story which I didn’t have to say About a girl who fought with all her heart but still had to walk away. Once upon a time He loved me Once upon I loved him too It all fell apart in a moment Lord I wish it wasn’t true Cause You deserved the perfect family the fairytales you know so well Instead of sittin here listening to the story I wish I didn’t have to tell I know it’s hard To see mommy cry But I promise you were We’re all gonna be alright And I need you know That you will always be loved You’re the very best chapters In the story of us Once upon a time He loved me Once upon I loved him too It all fell apart in a moment Lord I wish it wasn’t true Cause You deserved the perfect family the fairytales you know so well Instead of sittin here listening to the story I wish I didn’t have to tell Now it’s time to pick up all the broken pieces So that we can be the story you believe in Once upon it was us 3 Starting over all brand new Dreaming of a new happy ending The one I always wanted for you Cause you deserve the perfect family the fairytales you know so well Instead of sittin here listening to the story I wish I didn’t have to tell
https://wn.com/Jana_Kramer_The_Story_(Official_Music_Video)
I Won't Give Up
3:19

I Won't Give Up

  • Order:
  • Duration: 3:19
  • Uploaded Date: 08 Apr 2017
  • views: 613576
Provided to YouTube by Elektra Nashville I Won't Give Up · Jana Kramer Jana Kramer ℗ 2011 Warner Music Nashville LLC Assistant Mixing Engineer: Drew Bollman Bass Guitar: Glenn Worf Wurlitzer: Gordon Mote Unknown: Hank Williams Acoustic Guitar: Ilya Toshinsky Lead Vocals: Jana Kramer Audio Recording Engineer: Jeff Balding Digital Editor: Jim Cooper Unknown: Justin Niebank Unknown: Matt Coles Pedal Steel Guitar: Paul Franklin Background Vocals: Russell Terrell Digital Editor: Scott Hendricks Unknown: Scott Hendricks Producer: Scott Hendricks Drums, Percussion: Shannon Forrest Electric Guitar: Tom Bukovac Writer: Jana Kramer Writer: Jess Leary Writer: Kye Fleming Auto-generated by YouTube.
https://wn.com/I_Won't_Give_Up
Jana Kramer - "I've Done Love" (Official Audio)
3:10

Jana Kramer - "I've Done Love" (Official Audio)

  • Order:
  • Duration: 3:10
  • Uploaded Date: 18 Aug 2017
  • views: 1377517
“I've Done Love” Available now: http://smarturl.it/JKDoneLove Spotify: https://open.spotify.com/artist/2PaRhxWFaqCUZybJDDoNrf Facebook: https://www.facebook.com/janakramermusic/# Instagram: https://www.instagram.com/kramergirl/?hl=en Twitter: https://twitter.com/kramergirl
https://wn.com/Jana_Kramer_I've_Done_Love_(Official_Audio)
Over You by Now
3:58

Over You by Now

  • Order:
  • Duration: 3:58
  • Uploaded Date: 08 Apr 2017
  • views: 318933
Provided to YouTube by Elektra Nashville Over You by Now · Jana Kramer Jana Kramer ℗ 2012 Warner Music Nashville LLC Fiddle, Mandolin: Aubrey Haynie Digital Editor: Ben Phillips Unknown: Ben Phillips Digital Editor: Brian David Willis Acoustic Guitar: Bryan Sutton Cello: Carole Rabinowitz Background Vocals: Carolyn Dawn Johnson Background Vocals: Catt Gravitt Unknown: Charlie Judge Keyboards: Charlie Judge String Arranger: Charlie Judge Background Vocals: Cherie Oakley Unknown: Chris Utley Dobro: Dan Dugmore Pedal Steel Guitar: Dan Dugmore Unknown: David Robinson Assistant Mixing Engineer: Drew Bollman Percussion: Eric Darken Bass Guitar: Glenn Worf Hammond B3 Organ: Gordon Mote Piano: Gordon Mote Unknown: Hank Williams Banjo: Ilya Toshinsky Acoustic Guitar: Ilya Toshinsky Lead Vocals: Jana Kramer Audio Recording Engineer: Jeff Balding Digital Editor: Jim Cooper Bass Guitar: Jimmie Sloas Unknown: Joe Martino Synthesizer: Joshua Crosby Unknown: Justin Niebank Unknown: Matt Coles Dobro: Paul Franklin Pedal Steel Guitar: Paul Franklin Background Vocals: Russell Terrell Digital Editor: Scott Hendricks Unknown: Scott Hendricks Producer: Scott Hendricks Drums, Percussion: Shannon Forrest Background Vocals: Stephanie Bentley Background Vocals: Tania Hancheroff Electric Guitar: Tom Bukovac Electric Guitar: Troy Lancaster Writer: Gordie Sampson Writer: Katrina Elam Writer: Troy Verges Auto-generated by YouTube.
https://wn.com/Over_You_By_Now
Voices Official Audio
3:17

Voices Official Audio

  • Order:
  • Duration: 3:17
  • Uploaded Date: 24 Sep 2021
  • views: 1050123
Listen to Jana Kramer's new single, "Voices." “Sometimes the loudest lies we believe are the ones we tell ourselves through the voices in our head. This song is about not believing those lies and fighting those inner voices to know your true worth, “stated Kramer. “My friend Sara was there through my divorce, and when she gave me this song, I immediately became overwhelmed with emotion because in that moment all I was doing was listening to those negative voices. This song got me out of that bad place, and I am hoping it can do the same for others as well. “ Lyrics: “Voices” Lyrics I am strong I am beautiful The girl I used to be She was confident and free and happy I don’t recognize myself Or this person in the mirror Staring back at me I’m fighting voices in my head Voices in my head Tellin me that i’m not enough I’m not pretty N I’m broken I’m not worthy of love Voices in my head Telling me that I should give up I’m fighting voices in my head, ohhhh I’m fighting voices in my head, ohhhh Words they can cut so deep Why do I care so much what people think? I wonder who I'd be If I didn’t have insecurities I don’t know what to think I’m losing all control of reality I’m fighting voices in my head Voices in my head Tellin me that i’m not enough I’m not pretty N I’m broken I’m not worthy of love Voices in my head Telling me that I should give up I’m fighting voices in my head, ohhhhh I’m fighting voices in my head, ohhhh Stop it I can’t take another minute I’m going crazy with these voices that are spinnin in my head Tell my head to listen to my heart And my heart says I’m done with voices in my head Voices in my head I know that I AM ENOUGH I AM pretty I’m NOT broken I AM worthy of LOVE Voices in my head I I know that it’s time to give up With All these voices in my head Voices in my head I’m worthy of Love It’s time to give up I am strong .... I am beautiful .... Listen to "Voices" at: smarturl.it/JKVoices #JanaKramer #Voices #VoicesInMyHead
https://wn.com/Voices_Official_Audio
Jana Kramer: I Won't Give Up [With Lyrics]
3:07

Jana Kramer: I Won't Give Up [With Lyrics]

  • Order:
  • Duration: 3:07
  • Uploaded Date: 08 Feb 2011
  • views: 4633835
New Single by One Tree Hill's Jana Kramer: I Won't Give Up [I dont own this music] LYRICS:::: Don't tell me love is something you wont try again That's just not true But baby right now, maybe what you need is a friend Well I'm here for you Chorus: I will be by your side If ever you fall deep in the dead of the night When ever you call And I wont change my mind No, ill see you through And I won't give up, no I won't give up, I won't give up on you You need someone who knows you from the inside out The way I do I've seen you walk the wire, never looking down I believe in you Chorus: I will be by your side If ever you fall deep in the dead of the night When ever you call And I wont change my mind No, ill see you through And I won't give up, no I won't give up, I won't give up on you I will be by your side If ever you fall deep in the dead of the night And I won't give up, no I won't give up, I won't give up You can call it love, But I won't give up on you
https://wn.com/Jana_Kramer_I_Won't_Give_Up_With_Lyrics
Jana Kramer - Circles (Official Music Video)
4:00

Jana Kramer - Circles (Official Music Video)

  • Order:
  • Duration: 4:00
  • Uploaded Date: 06 Sep 2016
  • views: 4699448
The official music video for Jana Kramer's new single, "Circles". Get "I've Done Love" on iTunes: http://smarturl.it/JKDoneLove http://janakramer.com http://facebook.com/janakramermusic http://twitter.com/kramergirl http://instagram.com/kramergirl
https://wn.com/Jana_Kramer_Circles_(Official_Music_Video)
Jana Kramer - I Got the Boy (Lyrics)
3:22

Jana Kramer - I Got the Boy (Lyrics)

  • Order:
  • Duration: 3:22
  • Uploaded Date: 25 Nov 2023
  • views: 748550
subscribe for your daily country fix 👢 https://www.youtube.com/channel/UCB1ciVNtSadQjAfJQBujkGw?sub_confirmation=1 Jana Kramer - I Got the Boy (Lyrics) [Verse 1] I saw your picture in a paper Honeymoon in Jamaica, she's a lucky girl You look so grown up in your black tux, from a ballcap in a pick up Seems like another world You and me and our big dreams, falling in love We were two kids in the backseat, all fearless and young [Chorus] I got the first kiss and she'll get the last She's got the future, I got the past I got the class ring, she got the diamond and wedding band I got the boy, and she got the man [Verse 2] Yeah there's an old you that I knew Fake IDs to get into those spring break bars Backwoods on a four wheel, hanging on tight I can still feel my racing heart And now you're cleaned up with a hair cut, nice tie and shoes If things were different and I had a choice, which would I choose? [Chorus] I got the first kiss and she'll get the last She's got the future, I got the past I got the class ring, she got the diamond and wedding band I got the boy, and she got the man [Outro] I got the first kiss and she’ll get the last We each got something, the other will never have I got the long hair, hot head She got the cool and steady hand I got the boy and she got the man I got the boy and she got the man #janakramer #countrymusic #countrylyrics
https://wn.com/Jana_Kramer_I_Got_The_Boy_(Lyrics)
When You're Lonely
3:32

When You're Lonely

  • Order:
  • Duration: 3:32
  • Uploaded Date: 08 Apr 2017
  • views: 237193
Provided to YouTube by Elektra Nashville When You're Lonely · Jana Kramer Jana Kramer ℗ 2011 Warner Music Nashville LLC Fiddle, Mandolin: Aubrey Haynie Digital Editor: Ben Phillips Unknown: Ben Phillips Digital Editor: Brian David Willis Acoustic Guitar: Bryan Sutton Background Vocals: Carolyn Dawn Johnson Background Vocals: Catt Gravitt Unknown: Charlie Judge Background Vocals: Cherie Oakley Unknown: Chris Utley Dobro: Dan Dugmore Pedal Steel Guitar: Dan Dugmore Unknown: David Robinson Assistant Mixing Engineer: Drew Bollman Percussion: Eric Darken Bass Guitar: Glenn Worf Hammond B3 Organ: Gordon Mote Piano: Gordon Mote Unknown: Hank Williams Banjo: Ilya Toshinsky Acoustic Guitar: Ilya Toshinsky Lead Vocals: Jana Kramer Audio Recording Engineer: Jeff Balding Digital Editor: Jim Cooper Bass Guitar: Jimmie Sloas Unknown: Joe Martino Synthesizer: Joshua Crosby Unknown: Justin Niebank Unknown: Matt Coles Dobro: Paul Franklin Pedal Steel Guitar: Paul Franklin Background Vocals: Russell Terrell Digital Editor: Scott Hendricks Unknown: Scott Hendricks Producer: Scott Hendricks Drums, Percussion: Shannon Forrest Background Vocals: Stephanie Bentley Background Vocals: Tania Hancheroff Electric Guitar: Tom Bukovac Electric Guitar: Troy Lancaster Writer: Lynn Hutton Writer: Tammi Kidd Auto-generated by YouTube.
https://wn.com/When_You're_Lonely
Jana Kramer - What I Love About Your Love (Official Video)
3:10

Jana Kramer - What I Love About Your Love (Official Video)

  • Order:
  • Duration: 3:10
  • Uploaded Date: 12 Jan 2012
  • views: 2824632
http://www.janakramer.com Brand new self-titled album in stores NOW: http://smarturl.it/JanaKramer
https://wn.com/Jana_Kramer_What_I_Love_About_Your_Love_(Official_Video)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Jana Kramer -
    3:52
    Jana Kramer - "Why Ya Wanna" (Official Music Video)remove from playlist
  • Jana Kramer - I Got The Boy (Official Music Video)
    3:25
    Jana Kramer - I Got The Boy (Official Music Video)remove from playlist
  • Jana Kramer - I Hope It Rains (Official Music Video)
    3:17
    Jana Kramer - I Hope It Rains (Official Music Video)remove from playlist
  • Jana Kramer - Whiskey (Official Video)
    3:45
    Jana Kramer - Whiskey (Official Video)remove from playlist
  • Jana Kramer - The Story (Official Music Video)
    3:08
    Jana Kramer - The Story (Official Music Video)remove from playlist
  • I Won't Give Up
    3:19
    I Won't Give Upremove from playlist
  • Jana Kramer -
    3:10
    Jana Kramer - "I've Done Love" (Official Audio)remove from playlist
  • Over You by Now
    3:58
    Over You by Nowremove from playlist
  • Voices Official Audio
    3:17
    Voices Official Audioremove from playlist
  • Jana Kramer: I Won't Give Up [With Lyrics]
    3:07
    Jana Kramer: I Won't Give Up [With Lyrics]remove from playlist
  • Jana Kramer - Circles (Official Music Video)
    4:00
    Jana Kramer - Circles (Official Music Video)remove from playlist
  • Jana Kramer - I Got the Boy (Lyrics)
    3:22
    Jana Kramer - I Got the Boy (Lyrics)remove from playlist
  • When You're Lonely
    3:32
    When You're Lonelyremove from playlist
  • Jana Kramer - What I Love About Your Love (Official Video)
    3:10
    Jana Kramer - What I Love About Your Love (Official Video)remove from playlist
PLAYLIST TIME:

Jana Kramer - "Why Ya Wanna" (Official Music Video)

© 2012 WMG http://www.janakramer.com Brand new self-titled album in stores NOW: http://smarturl.it/JanaKramer Official music video for Jana Kramer's "Why Ya Wanna" featured on the new self-titled album. http://twitter.com/kramergirl http://www.facebook.com/janakramermusic
3:52
Jana Kramer - "Why Ya Wanna" (Official Music Video)
© 2012 WMG http://www.janakramer.com Brand new self-titled album in stores NOW: http://sm...
published: 06 Feb 2012
Play in Full Screen
3:25
Jana Kramer - I Got The Boy (Official Music Video)
Get "I've Done Love" on iTunes: http://smarturl.it/JKDoneLove Watch Jana Kramer's officia...
published: 09 Apr 2015
Play in Full Screen
3:17
Jana Kramer - I Hope It Rains (Official Music Video)
Jana Kramer - I Hope It Rains (Official Music Video) Get Jana Kramer on iTunes: http://sm...
published: 15 Jul 2013
Play in Full Screen
3:45
Jana Kramer - Whiskey (Official Video)
Get "Whiskey" on iTunes: http://smarturl.it/janakramerwhiskey www.janakramer.com © 2013 ...
published: 15 Jan 2013
Play in Full Screen
3:08
Jana Kramer - The Story (Official Music Video)
Jana Kramer's New Music Video for her new single, "The Story". Listen to Voices at: http...
published: 26 Feb 2022
Play in Full Screen
3:19
I Won't Give Up
Provided to YouTube by Elektra Nashville I Won't Give Up · Jana Kramer Jana Kramer ℗ 20...
published: 08 Apr 2017
Play in Full Screen
3:10
Jana Kramer - "I've Done Love" (Official Audio)
“I've Done Love” Available now: http://smarturl.it/JKDoneLove Spotify: https://open.spotif...
published: 18 Aug 2017
Play in Full Screen
3:58
Over You by Now
Provided to YouTube by Elektra Nashville Over You by Now · Jana Kramer Jana Kramer ℗ 20...
published: 08 Apr 2017
Play in Full Screen
3:17
Voices Official Audio
Listen to Jana Kramer's new single, "Voices." “Sometimes the loudest lies we believe are ...
published: 24 Sep 2021
Play in Full Screen
3:07
Jana Kramer: I Won't Give Up [With Lyrics]
New Single by One Tree Hill's Jana Kramer: I Won't Give Up [I dont own this music] LYRIC...
published: 08 Feb 2011
Play in Full Screen
4:00
Jana Kramer - Circles (Official Music Video)
The official music video for Jana Kramer's new single, "Circles". Get "I've Done Love" o...
published: 06 Sep 2016
Play in Full Screen
3:22
Jana Kramer - I Got the Boy (Lyrics)
subscribe for your daily country fix 👢 https://www.youtube.com/channel/UCB1ciVNtSadQjAfJQ...
published: 25 Nov 2023
Play in Full Screen
3:32
When You're Lonely
Provided to YouTube by Elektra Nashville When You're Lonely · Jana Kramer Jana Kramer ℗...
published: 08 Apr 2017
Play in Full Screen
3:10
Jana Kramer - What I Love About Your Love (Official Video)
http://www.janakramer.com Brand new self-titled album in stores NOW: http://smarturl.it/Ja...
published: 12 Jan 2012
Play in Full Screen

Jana Kramer

Jana Rae Kramer (born December 2, 1983) is an American actress and country music singer. She is best known for her role as Alex Dupre on the television series One Tree Hill. Kramer began a country music career in 2012 with the single "Why Ya Wanna" from her self-titled debut album for Elektra Records.

Early life

Kramer was born in Rochester Hills, Michigan, United States, to Nora and Martin Kramer. She is of German Chilean, Croatian and French ancestry. Jana has one brother Steve who is a police officer. Jana attended Rochester Adams High School. She speaks some German.

Career

2002–11: acting career and record deal

In 2002, Kramer made her acting debut in the low-budget independent horror film Dead/Undead. The following year Kramer guest appeared on All My Children, which marked Kramer's television debut. Kramer has since continued to appear in a number of television shows such as CSI: Crime Scene Investigation, Grey's Anatomy, Private Practice and CSI: NY. She has also had small supporting roles in films such as Click, Prom Night and Spring Breakdown.

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

Latest News for: jana kramer

Edit

Denise Richards was upset that Charlie Sheen didn't inform her before revealing his HIV diagnosis

The Times of India 03 Apr 2025
She had wished for a heads-up so she could prepare their daughters, Sami and Lola, before they found out from the news or their peers.In a conversation on the podcast Whine Down with Jana Kramer, ...
Edit

Denise Richards says there was no co-parenting with her ex Charlie Sheen: 'I parent my ...

Business Insider 02 Apr 2025
On Tuesday's episode of the "Whine Down with Jana Kramer" podcast, Richards spoke about the dynamics of her relationship with Sheen ... Housewives of Beverly Hills" star told podcast host Jana Kramer.
Edit

Denise Richards reveals how she was forced to tell her daughters about Charlie Sheen being ...

The Daily Mail 02 Apr 2025
Denise Richards has revealed she was forced to tell her daughters that their father, Charlie Sheen, is HIV positive ... She told host Jana Kramer on Monday's episode of the Whine Down podcast. 'It was everywhere ... 'I have a very consistent lifestyle now ... .
Edit

‘What Is This Crazy Show?’ Candace Cameron Bure Opens Up About How Late Co-Star Bob Saget Impacted Her Decision To Join The Masked Singer

Cinema Blend 30 Mar 2025
While Saget’s raunchy standup would seemingly conflict with Bure’s more conservative sensibilities, the two were undeniably close, and she said on the Whine Down with Jana Kramer podcast that she wanted to honor her former co-star.
Edit

Candace Cameron Bure reveals honorary reason behind starring in ‘The Masked Singer’

The News International 29 Mar 2025
During the March 26 episode of the Whine Down with Jana Kramer podcast, Bure—who had just been unmasked as Cherry Blossom on season 13 of the hit competition series—admitted that singing in front of people is her worst nightmare.
Edit

Jana Kramer's unexpected confession about 'Dancing with the Stars'

The News International 28 Mar 2025
Jana Kramer's unexpected confession about 'Dancing with the Stars'. Jana Kramer, country singer and actress who joined Dancing with the Stars a few years ago, recently opened up about her experience on ...
Edit

James Van Der Beek reveals why the ‘Dawson’s Creek’ cast ‘didn’t speak for years’

New York Post 22 Mar 2025
I’ve gotten in touch with them recently and it’s just been so nice,” he admitted while on Thursday’s episode of Jana Kramer‘s “Whine Down” podcast ... Kramer inquired if Van Der Beek is ...
Edit

Who is Jana Kramer’s Scottish football coach husband, Allan Russell? The One Tree Hill alum ...

South China Morning Post 20 Mar 2025
One Tree Hill actress Jana Kramer and Allan Russell seemed to tie the knot in a beautiful July 2024 ceremony – but have just revealed that they officially married months before ... .
  • 1
×