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

2008 NASCAR Sprint Cup Series

The 2008 NASCAR Sprint Cup Series was the 60th season of professional stock car racing in the United States. The season was contested over thirty-six races, and began on February 9 at Daytona International Speedway with the Budweiser Shootout exhibition race, followed by the 50th Daytona 500 on February 17. The season continued with the 2008 Chase for the Sprint Cup beginning on September 14 with the Sylvania 300 at New Hampshire Motor Speedway and concluded with the Ford 400 at Homestead-Miami Speedway on November 16.

As a result of the merger between Sprint Corporation and Nextel Communications, NASCAR's premier series was renamed as the NASCAR Sprint Cup Series beginning with the 2008 season, The sseason marked the first season that the Car of Tomorrow was used for the entire season after being used for select races during the 2007 season. Coors Light also replaced Budweiser as the Official Beer of NASCAR, thereby becoming the new sponsor of the Pole Award given to pole winner in each Sprint Cup Series race. However, Budweiser was still the official sponsor for Bud Shootout at Daytona in February. Jimmie Johnson of Hendrick Motorsports was crowned champion at season's end, making him only the second driver in NASCAR's top division to win three championships in a row, with the first being Cale Yarborough.

2009 NASCAR Sprint Cup Series

The 2009 NASCAR Sprint Cup Series was the 61st season of professional stock car racing in the United States. The season included 36 races and two exhibition races with the regular season beginning with the Daytona 500 at Daytona International Speedway and ending with the Ford 400 at Homestead-Miami Speedway. The final ten races were known as 2009 Chase for the Sprint Cup. Rick Hendrick won the Owners' Championship, while Jimmie Johnson won the Drivers' Championship with a fifth finish at the final race of the season. Chevrolet won the Manufacturers' Championship with 248 points.

Teams and drivers

Complete schedule

Because of the merger of Dale Earnhardt, Inc. with Chip Ganassi Racing, the No. 01 and No. 15 teams closed after the 2008 season. However, the owners' points from the No. 15 were transferred to the No. 34, while points from either the No. 01 or No. 41 was transferred to the No. 07, with the No. 33 car, owned by Richard Childress, receiving the other. (NASCAR allows for a transfer if the original owner maintains some stake in the team to which points are transferred.) 2009 also saw the demise of Petty Enterprises, which merged with Gillette Evernham Motorsports. The new company would be called Richard Petty Motorsports, forming a 4 car team with Kasey Kahne in the No. 9, Elliott Sadler in the No. 19, Reed Sorenson driving the famed No. 43, and A. J. Allmendinger driving the No. 44. Also Bill Davis Racing was bought by Triad Racing, however the No. 22 was bought by Penske Racing with Bill Davis holding minority interest. The No. 22's points were transferred to the No. 77, thus guaranteeing that car a spot in the Daytona 500 should all other transfers occur. There were 41 full-time teams in 2009.

Sprint Cup Series

The NASCAR Sprint Cup Series (often shortened to Sprint Cup or the Cup Series) is the top racing series of the National Association for Stock Car Auto Racing (NASCAR). The series is named for its current sponsor, the Sprint Corporation, and has been known by other names in the past. It was originally known as the Strictly Stock Series (1949) and shortly became the Grand National Series (1950–1970). While leasing its naming rights to R. J. Reynolds Tobacco Company, it was known as the Winston Cup Series (1971–2003). A similar deal was made with Nextel in 2003, becoming the Nextel Cup Series (2004–2007) and it became the Sprint Cup after Sprint acquired Nextel in 2005. The name "Sprint" refers specifically to the subsidiary of Japanese telecommunications company SoftBank which is the entitlement sponsor; sprint car racing is a separate racing discipline.

The drivers' champion is determined by a point system where points are given according to finishing placement and laps led. The season is divided into two segments. After the first 26 races, 16 drivers, selected primarily on the basis of wins during the first 26 races, are seeded based on their total number of wins and compete in the last 10 races with the difference in points greatly minimized. This is called the Chase for the Championship.

2015 NASCAR Sprint Cup Series

The 2015 NASCAR Sprint Cup Series was the 67th season of professional stock car racing in the United States. The season began at Daytona International Speedway with the Sprint Unlimited exhibition race, the Budweiser Duels, and the Daytona 500. The season ended with the Ford EcoBoost 400 at Homestead-Miami Speedway. Kyle Busch won the championship. Despite not running the full season, Brett Moffitt was named Rookie of the Year.

The season also marked the first season of a new television contract. During the season, races were televised in the United States on Fox, Fox Sports 1, NBC, and NBCSN. ESPN and Turner Sports, who televised races from 2007 to 2014, did not seek to renew their contracts NASCAR following the completion of the 2014 season; this marked the end of a 31-year relationship between NASCAR and Turner's primary stations, TBS and TNT. In addition, it was the first season on the newly rebranded Fox Sports Racing in Canada and the Caribbean.

On January 22, 2015, four-time champion Jeff Gordon announced that 2015 would be his final season as a full-time driver, but he did not rule out retirement completely. Chase Elliott will replace him in the No. 24 car for Hendrick Motorsports in 2016.

Sprint Cup

Sprint Cup may refer to:

  • Sprint Cup Series, an auto racing series in the United States
    • Sprint Cup (trophy), the trophy awarded to the winner of the Sprint Cup Series driver's championship
  • Sprint Cup (trophy), the trophy awarded to the winner of the Sprint Cup Series driver's championship
  • Haydock Sprint Cup, a horse race in the United Kingdom
  • Sprint Cup (Hong Kong), a horse race in Hong Kong
  • See also

  • Sprint race (disambiguation)
  • Haydock Sprint Cup

    The Sprint Cup is a Group 1 flat horse race in Great Britain open to thoroughbreds aged three years or older. It is run at Haydock Park over a distance of 6 furlongs (1,207 metres), and it is scheduled to take place each year in early September.

    History

    The event was established in 1966, and it was originally open to horses aged two or older. It was devised by Robert Sangster, the heir to the Vernons Pools business, who later became a leading racehorse owner/breeder. During the early part of its history the race was sponsored by Vernons and held in early November. It was initially contested on a course with a sharp left-hand bend.

    The Vernons Sprint Cup was switched to September in 1979. It was transferred to Haydock's newly installed 6-furlong straight track in 1986. It was promoted to Group 1 status in 1988, the final year of Vernons' sponsorship. For a period the race was closed to two-year-olds, but it reopened in 1989. Juveniles were excluded again from 1994.

    The Sprint Cup is currently sponsored by Betfred.

    Podcasts:

    • NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX

      The Pennzoil 400 at Las Vegas race brought the energy as William Byron DOMINATED the track. In the first stage, Kyle Busch looked poised to make an impact, but an early crash into the wall damaged his hopes. Byron was able to cruise to an easy victory in Stage one. Much of the same came into the second stage as Byron won again with Kyle Larson and Alex Bowman finishing in the second and third place. Kyle Larson looked to be a strong contender in the final stage but a caution featuring Joey Logano forced overtime which helped Byron win the final stage. #NASCARonFOX #NASCAR #NASCARCupSeries SUBSCRIBE for more from NASCAR on FOX: https://foxs.pt/SubscribeNASCARonFOX The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube channel: http:...

      published: 06 Mar 2023
    • Cup Series Championship | NASCAR Cup Series Full Race Replay

      Relive the NASCAR Cup Series Championship from Phoenix Raceway in this week's NASCAR Cup Series Full Race Replay. ---------- Subscribe to NASCAR on YouTube: https://nas.cr/youtube Visit NASCAR.com for the latest news: https://nas.cr/nascar For more race day in-car cameras check out NASCAR Drive - https://www.nascar.com/drive Shop for your favorite NASCAR gear, diecasts and more: https://nas.cr/store Download the NASCAR Mobile App: https://nas.cr/mobile Weekend schedule for on-track action: https://nas.cr/weekend ---------- Play every weekend! ---------- NASCAR Fantasy Live: https://nas.cr/fantasy ---------- NASCAR on Social Media ---------- Twitter: https://twitter.com/nascar Facebook: https://www.facebook.com/NASCAR/ Instagram: https://www.instagram.com/nascar/ Snapchat: https://na...

      published: 08 Nov 2022
    • Pala Casino 400 | NASCAR Cup Series Full Race Replay

      Relive the Pala Casino 400 at Auto Club Speedway in this week's NASCAR Cup Series Full Race Replay. ---------- Subscribe to NASCAR on YouTube: https://nas.cr/youtube Visit NASCAR.com for the latest news: https://nas.cr/nascar For more race day in-car cameras check out NASCAR Drive - https://www.nascar.com/drive Shop for your favorite NASCAR gear, diecasts and more: https://nas.cr/store Download the NASCAR Mobile App: https://nas.cr/mobile Weekend schedule for on-track action: https://nas.cr/weekend ---------- Play every weekend! ---------- NASCAR Fantasy Live: https://nas.cr/fantasy ---------- NASCAR on Social Media ---------- Twitter: https://twitter.com/nascar Facebook: https://www.facebook.com/NASCAR/ Instagram: https://www.instagram.com/nascar/ Snapchat: https://nas.cr/Snapchat...

      published: 28 Feb 2023
    • NASCAR Cup Series: Daytona 500 2019 | EXTENDED HIGHLIGHTS | Motorsports on NBC

      Denny Hamlin fought to keep his lead in the last lap of the NASCAR season opener to win his second Daytona 500. #NBCSports #NASCAR #Daytona500 » Subscribe to Motorsports on NBC: https://www.youtube.com/motorsportsonnbc » Get the latest motor sports news on NBC Sports: https://www.nbcsports.com/motors » Watch Live races on NBCSports.com: http://www.nbcsports.com/live NBC Sports – the home of motorsports – features unparalleled motorsports programming, fueled by the network’s new media rights agreements with INDYCAR and International Motorsports Association (IMSA), NBC Sports will have more than 1,500 hours of motor sports coverage spanning NASCAR, INDYCAR, IMSA, Mecum Auctions, Monster Energy AMA Supercross, the Lucas Oil Pro Motocross Championship, Monster Jam, and Powernation. Subscribe ...

      published: 18 Feb 2019
    • Daytona 500 | NASCAR Cup Series Full Race Replay

      Relive the Daytona 500 at Daytona International Speedway in this week's NASCAR Cup Series Full Race Replay. ---------- Subscribe to NASCAR on YouTube: https://nas.cr/youtube Visit NASCAR.com for the latest news: https://nas.cr/nascar For more race day in-car cameras check out NASCAR Drive - https://www.nascar.com/drive Shop for your favorite NASCAR gear, diecasts and more: https://nas.cr/store Download the NASCAR Mobile App: https://nas.cr/mobile Weekend schedule for on-track action: https://nas.cr/weekend ---------- Play every weekend! ---------- NASCAR Fantasy Live: https://nas.cr/fantasy ---------- NASCAR on Social Media ---------- Twitter: https://twitter.com/nascar Facebook: https://www.facebook.com/NASCAR/ Instagram: https://www.instagram.com/nascar/ Snapchat: https://nas.cr/S...

      published: 21 Feb 2023
    • NASCAR Cup Series at Martinsville | NASCAR ON FOX HIGHLIGHTS

      Full highlights from Sunday's NASCAR Cup Series race from Martinsville Speedway. #NASCARonFOX #NASCAR #MartinsvilleSpeedway SUBSCRIBE for more from NASCAR on FOX: https://foxs.pt/SubscribeNASCARonFOX The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube channel: http://foxs.pt/SubscribeFOXSPORTS ►PBC ON FOX’s YouTube Channel: https://foxs.pt/SubscribePBCONFOX ►WWE ON FOX YouTube channel: https://foxs.pt/SubscribeWWEONFOX ►FOX Soccer’s YouTube channel: https://foxs.pt/SubscribeFOXSOCCER ►CFB ON FOX YouTube channel: https://foxs.pt/SubscribeCFBonFOX See more from NASCAR on FOX: https://foxs.pt/NASCARonFOX Like NASCAR on FOX on Facebook: https://foxs.pt/NASCARonFOXFacebook Follow NASCAR on FOX on Twitter: https://foxs.pt/NASCARonFOX...

      published: 30 Oct 2022
    • 2022 NASCAR Cup Series Championship | NASCAR ON FOX HIGHLIGHTS

      Full highlights from Sunday's 2022 NASCAR Cup Series Championship from Phoenix Raceway. #NASCARonFOX #NASCAR #NASCARCupSeries SUBSCRIBE for more from NASCAR on FOX: https://foxs.pt/SubscribeNASCARonFOX The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube channel: http://foxs.pt/SubscribeFOXSPORTS ►PBC ON FOX’s YouTube Channel: https://foxs.pt/SubscribePBCONFOX ►WWE ON FOX YouTube channel: https://foxs.pt/SubscribeWWEONFOX ►FOX Soccer’s YouTube channel: https://foxs.pt/SubscribeFOXSOCCER ►CFB ON FOX YouTube channel: https://foxs.pt/SubscribeCFBonFOX See more from NASCAR on FOX: https://foxs.pt/NASCARonFOX Like NASCAR on FOX on Facebook: https://foxs.pt/NASCARonFOXFacebook Follow NASCAR on FOX on Twitter: https://foxs.pt/NASCARonFO...

      published: 07 Nov 2022
    NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX
    12:19

    NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX

    • Order:
    • Duration: 12:19
    • Uploaded Date: 06 Mar 2023
    • views: 207451
    The Pennzoil 400 at Las Vegas race brought the energy as William Byron DOMINATED the track. In the first stage, Kyle Busch looked poised to make an impact, but an early crash into the wall damaged his hopes. Byron was able to cruise to an easy victory in Stage one. Much of the same came into the second stage as Byron won again with Kyle Larson and Alex Bowman finishing in the second and third place. Kyle Larson looked to be a strong contender in the final stage but a caution featuring Joey Logano forced overtime which helped Byron win the final stage. #NASCARonFOX #NASCAR #NASCARCupSeries SUBSCRIBE for more from NASCAR on FOX: https://foxs.pt/SubscribeNASCARonFOX The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube channel: http://foxs.pt/SubscribeFOXSPORTS ►PBC ON FOX’s YouTube Channel: https://foxs.pt/SubscribePBCONFOX ►WWE ON FOX YouTube channel: https://foxs.pt/SubscribeWWEONFOX ►FOX Soccer’s YouTube channel: https://foxs.pt/SubscribeFOXSOCCER ►CFB ON FOX YouTube channel: https://foxs.pt/SubscribeCFBonFOX See more from NASCAR on FOX: https://foxs.pt/NASCARonFOX Like NASCAR on FOX on Facebook: https://foxs.pt/NASCARonFOXFacebook Follow NASCAR on FOX on Twitter: https://foxs.pt/NASCARonFOXTwitter Follow NASCAR on FOX on Instagram: https://foxs.pt/NASCARonFOXInstagram About NASCAR on FOX: Your home for NASCAR on FOX, from Raceday to Radioactive and all of the racing action in between. NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX https://youtu.be/lsy6wXezQU4 NASCAR on FOX https://www.youtube.com/c/NASCARonFOX
    https://wn.com/Nascar_Cup_Series_Pennzoil_400_At_Las_Vegas_Highlights_|_Nascar_On_Fox
    Cup Series Championship | NASCAR Cup Series Full Race Replay
    3:23:17

    Cup Series Championship | NASCAR Cup Series Full Race Replay

    • Order:
    • Duration: 3:23:17
    • Uploaded Date: 08 Nov 2022
    • views: 209664
    Relive the NASCAR Cup Series Championship from Phoenix Raceway in this week's NASCAR Cup Series Full Race Replay. ---------- Subscribe to NASCAR on YouTube: https://nas.cr/youtube Visit NASCAR.com for the latest news: https://nas.cr/nascar For more race day in-car cameras check out NASCAR Drive - https://www.nascar.com/drive Shop for your favorite NASCAR gear, diecasts and more: https://nas.cr/store Download the NASCAR Mobile App: https://nas.cr/mobile Weekend schedule for on-track action: https://nas.cr/weekend ---------- Play every weekend! ---------- NASCAR Fantasy Live: https://nas.cr/fantasy ---------- NASCAR on Social Media ---------- Twitter: https://twitter.com/nascar Facebook: https://www.facebook.com/NASCAR/ Instagram: https://www.instagram.com/nascar/ Snapchat: https://nas.cr/SnapchatAdd TikTok: https://nas.cr/TikTok GIPHY: https://giphy.com/nascar
    https://wn.com/Cup_Series_Championship_|_Nascar_Cup_Series_Full_Race_Replay
    Pala Casino 400 | NASCAR Cup Series Full Race Replay
    3:24:17

    Pala Casino 400 | NASCAR Cup Series Full Race Replay

    • Order:
    • Duration: 3:24:17
    • Uploaded Date: 28 Feb 2023
    • views: 334044
    Relive the Pala Casino 400 at Auto Club Speedway in this week's NASCAR Cup Series Full Race Replay. ---------- Subscribe to NASCAR on YouTube: https://nas.cr/youtube Visit NASCAR.com for the latest news: https://nas.cr/nascar For more race day in-car cameras check out NASCAR Drive - https://www.nascar.com/drive Shop for your favorite NASCAR gear, diecasts and more: https://nas.cr/store Download the NASCAR Mobile App: https://nas.cr/mobile Weekend schedule for on-track action: https://nas.cr/weekend ---------- Play every weekend! ---------- NASCAR Fantasy Live: https://nas.cr/fantasy ---------- NASCAR on Social Media ---------- Twitter: https://twitter.com/nascar Facebook: https://www.facebook.com/NASCAR/ Instagram: https://www.instagram.com/nascar/ Snapchat: https://nas.cr/SnapchatAdd TikTok: https://nas.cr/TikTok GIPHY: https://giphy.com/nascar
    https://wn.com/Pala_Casino_400_|_Nascar_Cup_Series_Full_Race_Replay
    NASCAR Cup Series: Daytona 500 2019 | EXTENDED HIGHLIGHTS | Motorsports on NBC
    9:56

    NASCAR Cup Series: Daytona 500 2019 | EXTENDED HIGHLIGHTS | Motorsports on NBC

    • Order:
    • Duration: 9:56
    • Uploaded Date: 18 Feb 2019
    • views: 11437252
    Denny Hamlin fought to keep his lead in the last lap of the NASCAR season opener to win his second Daytona 500. #NBCSports #NASCAR #Daytona500 » Subscribe to Motorsports on NBC: https://www.youtube.com/motorsportsonnbc » Get the latest motor sports news on NBC Sports: https://www.nbcsports.com/motors » Watch Live races on NBCSports.com: http://www.nbcsports.com/live NBC Sports – the home of motorsports – features unparalleled motorsports programming, fueled by the network’s new media rights agreements with INDYCAR and International Motorsports Association (IMSA), NBC Sports will have more than 1,500 hours of motor sports coverage spanning NASCAR, INDYCAR, IMSA, Mecum Auctions, Monster Energy AMA Supercross, the Lucas Oil Pro Motocross Championship, Monster Jam, and Powernation. Subscribe to our channel for the latest motors news and highlights! Launching in Chicagoland, NBC’s full schedule consists of 20 Monster Energy NASCAR Cup Series races and 19 XFINITY Series races, broadcast across NBC and NBCSN and live streamed on NBCSports.com and the NBC Sports App. NBC Sports Group’s exclusive coverage of the NASCAR Playoffs swings into action from Las Vegas Motor Speedway and culminates with the Monster Energy NASCAR Cup Championship from Miami. Visit NBC Sports: https://www.nbcsports.com/motors Follow Motorsports on NBC on Twitter: https://twitter.com/MotorsportsNBC Find NBC Sports on Facebook: https://www.facebook.com/NBCSports Follow NBC Sports on Twitter: https://twitter.com/nbcsports Follow NBC Sports on Instagram: https://www.instagram.com/nbcsports Subscribe to NBC Sports on YouTube: https://www.youtube.com/nbcsports Daytona 500 2019 | EXTENDED HIGHLIGHTS | Motorsports on NBC https://www.youtube.com/motorsportsonnbc
    https://wn.com/Nascar_Cup_Series_Daytona_500_2019_|_Extended_Highlights_|_Motorsports_On_Nbc
    Daytona 500 | NASCAR Cup Series Full Race Replay
    4:24:10

    Daytona 500 | NASCAR Cup Series Full Race Replay

    • Order:
    • Duration: 4:24:10
    • Uploaded Date: 21 Feb 2023
    • views: 267041
    Relive the Daytona 500 at Daytona International Speedway in this week's NASCAR Cup Series Full Race Replay. ---------- Subscribe to NASCAR on YouTube: https://nas.cr/youtube Visit NASCAR.com for the latest news: https://nas.cr/nascar For more race day in-car cameras check out NASCAR Drive - https://www.nascar.com/drive Shop for your favorite NASCAR gear, diecasts and more: https://nas.cr/store Download the NASCAR Mobile App: https://nas.cr/mobile Weekend schedule for on-track action: https://nas.cr/weekend ---------- Play every weekend! ---------- NASCAR Fantasy Live: https://nas.cr/fantasy ---------- NASCAR on Social Media ---------- Twitter: https://twitter.com/nascar Facebook: https://www.facebook.com/NASCAR/ Instagram: https://www.instagram.com/nascar/ Snapchat: https://nas.cr/SnapchatAdd TikTok: https://nas.cr/TikTok GIPHY: https://giphy.com/nascar
    https://wn.com/Daytona_500_|_Nascar_Cup_Series_Full_Race_Replay
    NASCAR Cup Series at Martinsville | NASCAR ON FOX HIGHLIGHTS
    8:18

    NASCAR Cup Series at Martinsville | NASCAR ON FOX HIGHLIGHTS

    • Order:
    • Duration: 8:18
    • Uploaded Date: 30 Oct 2022
    • views: 172624
    Full highlights from Sunday's NASCAR Cup Series race from Martinsville Speedway. #NASCARonFOX #NASCAR #MartinsvilleSpeedway SUBSCRIBE for more from NASCAR on FOX: https://foxs.pt/SubscribeNASCARonFOX The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube channel: http://foxs.pt/SubscribeFOXSPORTS ►PBC ON FOX’s YouTube Channel: https://foxs.pt/SubscribePBCONFOX ►WWE ON FOX YouTube channel: https://foxs.pt/SubscribeWWEONFOX ►FOX Soccer’s YouTube channel: https://foxs.pt/SubscribeFOXSOCCER ►CFB ON FOX YouTube channel: https://foxs.pt/SubscribeCFBonFOX See more from NASCAR on FOX: https://foxs.pt/NASCARonFOX Like NASCAR on FOX on Facebook: https://foxs.pt/NASCARonFOXFacebook Follow NASCAR on FOX on Twitter: https://foxs.pt/NASCARonFOXTwitter Follow NASCAR on FOX on Instagram: https://foxs.pt/NASCARonFOXInstagram About NASCAR on FOX: Your home for NASCAR on FOX, from Raceday to Radioactive and all of the racing action in between. NASCAR Cup Series at Martinsville | NASCAR ON FOX HIGHLIGHTS https://youtu.be/cj1khQrtF0E NASCAR on FOX https://www.youtube.com/c/NASCARonFOX
    https://wn.com/Nascar_Cup_Series_At_Martinsville_|_Nascar_On_Fox_Highlights
    2022 NASCAR Cup Series Championship | NASCAR ON FOX HIGHLIGHTS
    11:26

    2022 NASCAR Cup Series Championship | NASCAR ON FOX HIGHLIGHTS

    • Order:
    • Duration: 11:26
    • Uploaded Date: 07 Nov 2022
    • views: 91735
    Full highlights from Sunday's 2022 NASCAR Cup Series Championship from Phoenix Raceway. #NASCARonFOX #NASCAR #NASCARCupSeries SUBSCRIBE for more from NASCAR on FOX: https://foxs.pt/SubscribeNASCARonFOX The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube channel: http://foxs.pt/SubscribeFOXSPORTS ►PBC ON FOX’s YouTube Channel: https://foxs.pt/SubscribePBCONFOX ►WWE ON FOX YouTube channel: https://foxs.pt/SubscribeWWEONFOX ►FOX Soccer’s YouTube channel: https://foxs.pt/SubscribeFOXSOCCER ►CFB ON FOX YouTube channel: https://foxs.pt/SubscribeCFBonFOX See more from NASCAR on FOX: https://foxs.pt/NASCARonFOX Like NASCAR on FOX on Facebook: https://foxs.pt/NASCARonFOXFacebook Follow NASCAR on FOX on Twitter: https://foxs.pt/NASCARonFOXTwitter Follow NASCAR on FOX on Instagram: https://foxs.pt/NASCARonFOXInstagram About NASCAR on FOX: Your home for NASCAR on FOX, from Raceday to Radioactive and all of the racing action in between. 2022 NASCAR Cup Series Championship | NASCAR ON FOX HIGHLIGHTS https://youtu.be/8O_8SLiRPlk NASCAR on FOX https://www.youtube.com/c/NASCARonFOX
    https://wn.com/2022_Nascar_Cup_Series_Championship_|_Nascar_On_Fox_Highlights
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX
      12:19
      NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOXremove from playlist
    • Cup Series Championship | NASCAR Cup Series Full Race Replay
      3:23:17
      Cup Series Championship | NASCAR Cup Series Full Race Replayremove from playlist
    • Pala Casino 400 | NASCAR Cup Series Full Race Replay
      3:24:17
      Pala Casino 400 | NASCAR Cup Series Full Race Replayremove from playlist
    • NASCAR Cup Series: Daytona 500 2019 | EXTENDED HIGHLIGHTS | Motorsports on NBC
      9:56
      NASCAR Cup Series: Daytona 500 2019 | EXTENDED HIGHLIGHTS | Motorsports on NBCremove from playlist
    • Daytona 500 | NASCAR Cup Series Full Race Replay
      4:24:10
      Daytona 500 | NASCAR Cup Series Full Race Replayremove from playlist
    • NASCAR Cup Series at Martinsville | NASCAR ON FOX HIGHLIGHTS
      8:18
      NASCAR Cup Series at Martinsville | NASCAR ON FOX HIGHLIGHTSremove from playlist
    • 2022 NASCAR Cup Series Championship | NASCAR ON FOX HIGHLIGHTS
      11:26
      2022 NASCAR Cup Series Championship | NASCAR ON FOX HIGHLIGHTSremove from playlist
    PLAYLIST TIME: 0:00 / 11:53:43

    NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX

    The Pennzoil 400 at Las Vegas race brought the energy as William Byron DOMINATED the track. In the first stage, Kyle Busch looked poised to make an impact, but an early crash into the wall damaged his hopes. Byron was able to cruise to an easy victory in Stage one. Much of the same came into the second stage as Byron won again with Kyle Larson and Alex Bowman finishing in the second and third place. Kyle Larson looked to be a strong contender in the final stage but a caution featuring Joey Logano forced overtime which helped Byron win the final stage. #NASCARonFOX #NASCAR #NASCARCupSeries SUBSCRIBE for more from NASCAR on FOX: https://foxs.pt/SubscribeNASCARonFOX The all-new FOX Sports App, built for the modern sports fan: https://tinyurl.com/y4uouolb ►FOX Sports YouTube channel: http://foxs.pt/SubscribeFOXSPORTS ►PBC ON FOX’s YouTube Channel: https://foxs.pt/SubscribePBCONFOX ►WWE ON FOX YouTube channel: https://foxs.pt/SubscribeWWEONFOX ►FOX Soccer’s YouTube channel: https://foxs.pt/SubscribeFOXSOCCER ►CFB ON FOX YouTube channel: https://foxs.pt/SubscribeCFBonFOX See more from NASCAR on FOX: https://foxs.pt/NASCARonFOX Like NASCAR on FOX on Facebook: https://foxs.pt/NASCARonFOXFacebook Follow NASCAR on FOX on Twitter: https://foxs.pt/NASCARonFOXTwitter Follow NASCAR on FOX on Instagram: https://foxs.pt/NASCARonFOXInstagram About NASCAR on FOX: Your home for NASCAR on FOX, from Raceday to Radioactive and all of the racing action in between. NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX https://youtu.be/lsy6wXezQU4 NASCAR on FOX https://www.youtube.com/c/NASCARonFOX
    12:19
    NASCAR Cup Series: Pennzoil 400 at Las Vegas Highlights | NASCAR on FOX
    The Pennzoil 400 at Las Vegas race brought the energy as William Byron DOMINATED the track...
    published: 06 Mar 2023
    Play in Full Screen
    3:23:17
    Cup Series Championship | NASCAR Cup Series Full Race Replay
    Relive the NASCAR Cup Series Championship from Phoenix Raceway in this week's NASCAR Cup S...
    published: 08 Nov 2022
    Play in Full Screen
    3:24:17
    Pala Casino 400 | NASCAR Cup Series Full Race Replay
    Relive the Pala Casino 400 at Auto Club Speedway in this week's NASCAR Cup Series Full Ra...
    published: 28 Feb 2023
    Play in Full Screen
    9:56
    NASCAR Cup Series: Daytona 500 2019 | EXTENDED HIGHLIGHTS | Motorsports on NBC
    Denny Hamlin fought to keep his lead in the last lap of the NASCAR season opener to win hi...
    published: 18 Feb 2019
    Play in Full Screen
    4:24:10
    Daytona 500 | NASCAR Cup Series Full Race Replay
    Relive the Daytona 500 at Daytona International Speedway in this week's NASCAR Cup Series ...
    published: 21 Feb 2023
    Play in Full Screen
    8:18
    NASCAR Cup Series at Martinsville | NASCAR ON FOX HIGHLIGHTS
    Full highlights from Sunday's NASCAR Cup Series race from Martinsville Speedway. #NASCAR...
    published: 30 Oct 2022
    Play in Full Screen
    11:26
    2022 NASCAR Cup Series Championship | NASCAR ON FOX HIGHLIGHTS
    Full highlights from Sunday's 2022 NASCAR Cup Series Championship from Phoenix Raceway. #...
    published: 07 Nov 2022
    Play in Full Screen

    2008 NASCAR Sprint Cup Series

    The 2008 NASCAR Sprint Cup Series was the 60th season of professional stock car racing in the United States. The season was contested over thirty-six races, and began on February 9 at Daytona International Speedway with the Budweiser Shootout exhibition race, followed by the 50th Daytona 500 on February 17. The season continued with the 2008 Chase for the Sprint Cup beginning on September 14 with the Sylvania 300 at New Hampshire Motor Speedway and concluded with the Ford 400 at Homestead-Miami Speedway on November 16.

    As a result of the merger between Sprint Corporation and Nextel Communications, NASCAR's premier series was renamed as the NASCAR Sprint Cup Series beginning with the 2008 season, The sseason marked the first season that the Car of Tomorrow was used for the entire season after being used for select races during the 2007 season. Coors Light also replaced Budweiser as the Official Beer of NASCAR, thereby becoming the new sponsor of the Pole Award given to pole winner in each Sprint Cup Series race. However, Budweiser was still the official sponsor for Bud Shootout at Daytona in February. Jimmie Johnson of Hendrick Motorsports was crowned champion at season's end, making him only the second driver in NASCAR's top division to win three championships in a row, with the first being Cale Yarborough.

    '); } 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: sprint cup series

    Edit

    Kasey Kahne to race in NASCAR Xfinity Series at Rockingham Speedway, what to know

    The Tennessean 19 Apr 2025
    This will be Kahne's first NASCAR race since retiring from full-time Cup Series racing after the 2018 season ... Kasey Kahne started his NASCAR Cup Series career in 2004 with Evernham Motorsports in the No.
    Edit

    Yes, there's NASCAR on TV this week. Here's where and how to watch the Rockingham races

    Florida Today 17 Apr 2025
    The guys talk Kyle Larson's Bristol win, Rory McIlroy's Masters triumph, NASCAR's return to Rockingham Speedway and the Cup Series' Easter break. Will this weekend be the possible preview of the NASCAR Cup Series' eventual return to Rockingham?.
    Edit

    HH Shaikh Isa bin Salman attends 29th race of REHC season

    Bahrain News Agency 17 Apr 2025
    The final round of the inaugural Future Stars Series for locally bred horses concluded during the event ... Shawn Chan, CEO of Singapore Gulf Bank (SGB), presented the SGB Future Stars Sprint Cup to winning trainer A.
    Edit

    Duck Dynasty Return Date, Details: CONFIRMED!

    The Hollywood Gossip 17 Apr 2025
    ... Norris poses with Si and Willie Robertson, of Duck Dynasty, at the drivers meeting prior to the NASCAR Sprint Cup Series AAA Texas 500 at Texas Motor Speedway on November 6, 2016 in Fort Worth, Texas.
    Edit

    Sports on TV for April 12 – 13

    Wtop 11 Apr 2025
    FS1NTT IndyCar Series ... Sprint Race, Doha, Qatar ... PRIME VIDEO — NASCAR Cup Series ... FS2 — NTT IndyCar Series ... PRIME VIDEO — NASCAR Cup Series ... CW — NASCAR Xfinity Series ... FS1 — Bassmaster Elite Series ... CBSSN — Serie A ... FS1 — NASCAR Cup Series.
    • 1
    ×