All-Time Denver Broncos 53-Man Roster (2024)

Quiz Lab

Quiz Lab

Sports

NFL

By ngrill3502

15m

56 Questions

39 Plays39 Plays

39 Plays

Comments

Give Quiz Kudos

Give Quiz Kudos

-

")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.quest_id, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$j('#snark').hide();$objective.insertAfter($j('#gameOverMsg'));} else if (is_flagship_app_view) {$j('#snark').html();$objective.appendTo($j('#snark'));} else {$objective.appendTo($j('#reckoning .stats-wrapper'));}} else if (showSnark) {var snark = getSnark(userPct);var attachSnarkModalListener = false;if (snark !== '') {snark = ""+snark+"";if (!window.mweb) {if (false) {attachSnarkModalListener = true;snark += "";} else {snark += "";}}} else {$j('#snark').hide();}$j('#snark').html(snark);if(attachSnarkModalListener){ $j('#hide-snark-open-confirmation-modal').on('click', function () { var modalArgs = {title: 'Hide These Messages?',message: 'Are you sure you want to hide post-quiz messages?', onYes: function(remodal){ $j.ajax({ type: "GET", url: "/ajax/user_settings.php", data: {s: 0}, success: function(response) { if (response.success) { $j('#snark').hide(); remodal.close(); } else { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }, error: function(response) { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }); } }; SporcleLib.Modal._openConfirmationModal(modalArgs); }); }} else {$j('#snark').hide();}// Update get reckoning with playlist infovar playlistData;if (mweb) {playlistData = typeof window.playlist === 'object' && window.playlist.hasOwnProperty('games') ? window.playlist : null;} else {playlistData = window.Sporcle.gameData.playlist ? window.Sporcle.gameData.playlist.vm.data : null;}if (playlistData) {playlistReckoning(playlistData, userPct, false && !stopwatch);}$j('#playGameBar').addClass('reckoning');$j('#reckonBox').show();if (mweb) {/* mobile games only */$j('#reckoning-numright').html(numRight);$j('#reckoning-time').html(displayTime(timerSecs));if (stopwatch) {$j('#reckoning-time-title').text("Stopwatch");$j('#reckoning-time, #reckoning-score').addClass('timePast');}var checkToOpenFlorinPlayGoalModal = () => {if (userPct == 0) {return;}if (!florinsPlayGoalData) {return;}var openModal = false;if (florinsPlayGoalData.reward_claimable) {openModal = true;} else if (florinsPlayGoalData.curr_streak + 1 == florinsPlayGoalData.goal_days && florinsPlayGoalData.plays_today == 0) {// First play of the day, this should complete their play goalopenModal = true;}if (openModal) { window.SporcleLib.Modal.openFlorinPlayGoalModal({ // Fudge these values to be at the goal, since we haven't necessarily logged this play yet and it might be the 7th curr_streak : florinsPlayGoalData.goal_days, reward_claimable : true, plays_today : florinsPlayGoalData.plays_today + 1, goal_days : florinsPlayGoalData.goal_days, reward_amount : florinsPlayGoalData.reward_amount, })}}if (is_flagship_app_view) {let animations = window.animations;let hapticType = 'success';let completeMsg;let animConfig = {animationData : animations.checkmark,loop : true,playSegments : [[0, 30], [31, 75]]};if (userPct == 1) {animConfig.animationData = animations.perfectScore;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Perfect Score!";} else if (timerSecs == 0) {hapticType = 'error';animConfig.animationData = animations.outOfTime;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Out of Time!";} else if (_spks && !didGiveUp) {hapticType = 'error';animConfig.animationData = animations.bomb;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "You Hit a Mine!";}window.SporcleLib.Modal.openModalFromTpl($j('#post-game-modal-tpl').html(), {show_loading : false,onInit : (modal) => {let $modal = modal.$modal; $modal.attr('id', 'postGameModal'); postGameAnim = lottie.loadAnimation({container : $modal.find('#postGameIcon')[0],animationData : animConfig.animationData,loop : animConfig.loop,autoplay : false});$modal.find('.modal-close').on('click', () => {window.continuePostQuiz();}); $modal.find('#completeMsg').html(completeMsg); $modal.find('#postPct').html(roundPercentScore(userPct));$modal.find('#postCorrect').html($j('#reckoning-score').text());if (snark) {$modal.find('#snark').html(snark);} else {$modal.find('#snark').hide();}setTimeout(() => {postGameAnim.playSegments(animConfig.playSegments, true);// if (hapticType) {// setTimeout(() => {// window.SporcleApp.api.playHaptic(hapticType);// }, 150);// }}, 150);},onClose : () => {// Need this delay because if we open a new modal right as the close animation finishes,// Then the modal events get confused and the "onOpen" callback never gets calledsetTimeout(() => {checkToOpenFlorinPlayGoalModal();}, 50);}});} else {checkToOpenFlorinPlayGoalModal();}}$j('#playGameBox').empty().hide();$j('#postGameBox').show();}function toggleshow() {showans = !showans;}function roundPercentScore(pctScore) {return _.round(100 * pctScore);}function updateBadge(userPct) {var earned = false;if (quizBadge && userPct > 0) { if (quizBadge.criteria && quizBadge.criteria.length) { var requiredCount = quizBadge.criteria.length; var earnedCount = 0; //Loop through possible badge criteria to see if we earned them quizBadge.criteria.forEach(function (criterion) { var comparison = parseInt(criterion.compare); if(criterion.name === 'percent'){ if ((comparison === 0 && userPct === parseFloat(criterion.value)) || //'0' means percent needs to equal (comparison === 1 && userPct > parseFloat(criterion.value)) || //'1' means percent needs to be greater than (comparison === -1 && userPct < parseFloat(criterion.value)) //'-1' means percent needs to be less than (at the time of writing, no badge exists like this) ) { earnedCount++; } } else if (criterion.name === 'month'){ var d = new Date(); //getMonth() starts at 0 if((d.getMonth() + 1 == criterion.value && comparison === 0) || (d.getMonth() + 1 > criterion.value && comparison === 1) || (d.getMonth() + 1 < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day'){ var d = new Date(); if((d.getDate() == criterion.value && comparison === 0) || (d.getDate() > criterion.value && comparison === 1) || (d.getDate() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day_of_the_week'){ var d = new Date(); if((d.getDay() == criterion.value && comparison === 0) || (d.getDay() > criterion.value && comparison === 1) || (d.getDay() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'avg_percent' && typeof averageScore !== 'undefined') {var roundedUserPct = _.round(userPct, 2); //matches backend precision in badge trackervar roundedAvgPct = _.round(averageScore, 2);if((roundedUserPct == roundedAvgPct && comparison === 0) || (roundedUserPct > roundedAvgPct && comparison === 1) || (roundedUserPct < roundedAvgPct && comparison === -1) ){ earnedCount++; } }}); earned = earnedCount == requiredCount;} else {earned = true;}} if (earned) {quizBadge.condition_earned = true;quizBadge.achieved_count++; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});_(quizBadge.conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {condition.earned = true;}});if (spliceIndex !== null) {quizBadge.remaining_conditions.splice(spliceIndex, 1); quizBadge.condition_earned_date = (new Date()).toLocaleDateString(undefined, { year: 'numeric', month: 'long', day: 'numeric' });; }if (quizBadge.remaining_conditions.length === 0 ) {if (quizBadge.badge_earned && quizBadge.levelable) {quizBadge.achieved_count = 0;quizBadge.level++;var currDate = new Date();quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();} else {quizBadge.badge_earned = true;var currDate = new Date();quizBadge.earned_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();if (quizBadge.levelable) {quizBadge.level = 1;quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();quizBadge.achieved_count = 0;}}}if (badgeTooltip) {badgeTooltip.deactivate();}if (badgeTooltipRightRail) {badgeTooltipRightRail.deactivate();}var template = _.template($j('#quiz-badge-template').html());if (window.mweb) {$j('#main-wrapper .quiz-badge').replaceWith($j(template(quizBadge)));} else {quizBadge.tooltip_trigger_id = 'quiz-badge-art';$j('#main-quiz-content .quiz-badge').replaceWith($j(template(quizBadge)));quizBadge.tooltip_trigger_id = 'quiz-badge-art-right-rail';$j('#right-rail .quiz-badge').replaceWith($j(template(quizBadge)));if (!quizBadge.badge_earned) {if (window.setupUnearnedBadgeTooltip) {window.setupUnearnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupUnearnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);} else {var conditionsTemp = _.template($j('#badge-conditions-template').html());var tooltipHtml = $j(conditionsTemp(quizBadge));const badgeTooltipOptions = { //this should match /sporcle-ui/tooltips/functionalTooltipstarget : true,tipJoint : 'bottom middle',showOn : 'mouseover',hideTriggers : ['target','tip'],stemLength : 8,stemBase : 12,hideOn : 'mouseout',removeElementsOnHide : true,background : 'white',borderColor : '#d8d8d8',borderWidth : 1,shadowOffset : [3,3],shadowBlur : 10,showEffect : 'slide',showEffectDuration : 0.1,hideEffectDuration : 0.3,className : 'badge-tooltip',shadowColor : 'rgba(0,0,0,0.25)'};badgeTooltip = new Opentip('#quiz-badge-art', tooltipHtml.html(), badgeTooltipOptions);badgeTooltipRightRail = new Opentip('#quiz-badge-art-right-rail', tooltipHtml.html(), badgeTooltipOptions);}} else {if (window.setupEarnedBadgeTooltip) {window.setupEarnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupEarnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);}}}}}function showHintTooltip(x, y, hint) {$hint = $j('#hintTooltip');if ($hint.length == 0) {$hint = $j('

' +'

' +'

' +'

' +'

' +'

').appendTo($j('body'));}if (hint) {var $afterContainer = $hint.find('.afterContainer');var $after = $hint.find('.after');// Set to max width before resize$afterContainer.css({width: '120px'});$hint.show();// Set tooltip text to hint$after.html(hint);// Get width of tooltip with textvar width = Math.ceil($after[0].offsetWidth) + 1;var leftShift = 0;if (mweb) {// Make sure the tooltip doesn't go off either side of the screenvar leftBound = 51;var rightBound = $j('body').width() - 71;var buf = 11;// Shift based on width of textvar shiftLimit = Math.max(width/2 - 20, 0);if (x < leftBound) {// Too close to left edge of screenleftShift = -shiftLimit;x = Math.max(x, buf);} else if (x > rightBound) {// Too close to right edge of screenleftShift = shiftLimit;x = Math.min(x, $j('body').width() - buf);}}// Set the position of the hint$hint.css({left: x + 'px',top: y + 'px',});// Set outer container size and position$afterContainer.css({width: width + 'px',left: '-' + ((width / 2) + leftShift) + 'px'});} else {$hint.hide();}}function getRandomColor() {var r = Math.round(Math.random() * 255);var g = Math.round(Math.random() * 255);var b = Math.round(Math.random() * 255);return 'rgb(' + r + ',' + g + ',' + b + ')';}function hintTooltipIsDisplayed() {return $j('#hintTooltip').is(':visible');}function getCurrentHintText() {return $j('#hintTooltip .afterContainer .after').text();}// This is used to yield execution to the main javascript thread so that we can break longer running tasks into smaller tasks.// See here: https://web.dev/articles/optimize-long-tasks?utm_source=devtoolsfunction yieldToMain () {return new Promise(resolve => {setTimeout(resolve, 0);});}async function runStartCode(stopwatch) {if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {if (window.startTriggered) {return;} else {window.startTriggered = true;}if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}// The `startGame` function does a lot, so we want to yield execution both before and after this call. Yielding before// will allow the existing task to finish, freeing up the runtime to move to the next thing in the message queue before startGame// executes. Yielding after will do the same, before we perform the rest of the actions related to starting a quiz.await yieldToMain();await startGame(900);await yieldToMain();callSPHooks('postStart');}}function callSPHooks(name) {if (typeof _spHooks != 'undefined') {var hlen = _spHooks[name].length;for (var i = 0; i < hlen; i++) {_spHooks[name][i]();}}}

0/56

Quiz is untimed. Quiz plays in practice mode will not be counted towards challenge completion or badge progress.

15:00

PositionPlayerYears with Team
Head Coach1984-87, 1990-91, 1995-08
Offensive Coordinator1995-05, 2015-16
Defensive Coordinator1969-88
QB*1983-98
QB*2012-15
QB1977-82
RB*1995-01
RB*1967-75
RB1973-80
RB1982-90
RB2000-05
FB1974-80
WR1995-06
WR2010-18
WR1960-66
WR1995-03
WR1979-87
WR2014-19
TE*1990-99, 2002-03
TE1972-83
LT2008-14
LT1998-07
LG1980-89
C1994-07
C1977-88
RG1973-86
RT*1993-97
RT1981-92, 1994
PositionPlayerYears with Team
DT1997-05
DT1975-86
DT1985-93
DT1968-78
DE1971-78
DE1973-85
DE1980-88
DE1967-72
OLB2011-21
OLB1973-86
OLB1985-95
OLB1996-03
MLB*1974-83
MLB1983-94
MLB1999-06
MLB1996-01
CB*2004-13
CB1975-86
CB2011-19
DB1976-86
FS*1989-98
FS2016-23
FS1960--66
SS1981-94
SS1969-81
K1993-07
P1993-02
PR/WR/KR1975-83
All-Time Denver Broncos 53-Man Roster (2024)

FAQs

How many qbs has denver had since manning? ›

Unlucky 13: Broncos have cycled through 13 starting quarterbacks since Peyton Manning retired.

Who played for the Denver Broncos and considered to be one of the greatest quarterbacks of all time? ›

Recent News. John Elway (born June 28, 1960, Port Angeles, Washington, U.S.) is an American collegiate and professional gridiron football player who is considered one of the greatest quarterbacks of all time. He led the Denver Broncos of the National Football League (NFL) to two Super Bowl championships (1998 and 1999) ...

Who was the legendary Broncos quarterback John? ›

Legendary Broncos quarterback John Elway waded into one of the franchise's great what-ifs. Yes, the two-time Super Bowl champion quarterback said recently on the “Pardon My Take” podcast, it was a mistake not to draft Josh Allen in the 2018 NFL draft.

Who is the best Broncos player ever? ›

DENVER BRONCOS TOP 100 TEAM
PlayerPositionYears
John ElwayQB1983-98
Simon FletcherLB/DE1985-95
Steve FoleyCB/S1976-86
Cookie GilchristFB1965, '67
96 more rows

What quarterbacks won Super Bowls for the Denver Broncos? ›

Which qb won the superbowl with the broncos?
NAMEDATE
2P. Manning2/2/2014
3B. Brister1/31/1999
4J. Elway1/31/1999
5J. Elway1/25/1998
9 more rows

How many Super Bowls did Manning go to with Denver? ›

Helping lead both the Colts and Broncos to two Super Bowls each, Manning is the only quarterback to have reached the Super Bowl with multiple franchises with multiple starts for each. He was inducted to the College Football Hall of Fame in 2017 and the Pro Football Hall of Fame in 2021.

Who was the best QB for the Broncos? ›

Team career passing records
NameCompTD
John Elway4,123300
Peyton Manning1,443140
Brian Griese1,04471
Jake Plummer94471
6 more rows

Who was the legendary quarterback for the Denver Broncos? ›

John Albert Elway Jr.

(born June 28, 1960) is an American former professional football quarterback who spent his entire 16-year career with the Denver Broncos of the National Football League (NFL).

Who is the Broncos best wide receiver of all time? ›

The greatest wide receiver in Denver Broncos history went undrafted in the 1995 NFL Draft. Mile High Salute, Rod Smith!

How many Super Bowls did John Elway lose? ›

John Elway lost 3 times in Super Bowls in his career.

What happened to John Elway's son? ›

Only son Jack initially followed in his father's footsteps, playing quarterback at Arizona State. In 2014, he was arrested for domestic violence against his then-girlfriend, but he received only a fine. Jessica, meanwhile, played collegiate basketball at Stanford. Not much is known about Jordan and Juliana.

What is Elway doing now? ›

With his retirement from football, Elway will be focusing on his other businesses, which include restaurants and car dealerships. He also plans on making the most out of his QTR, or "Quality Time Remaining." Elway's legacy in football is secure, but his retirement marks the end of an era for the Denver Broncos.

Who is all in the Broncos Ring of Fame? ›

Little is one of 10 former Broncos who are in the Pro Football Hall of Fame and the Broncos Ring of Fame, joining QB John Elway, LB Randy Gradishar, OL Gary Zimmerman, DB Steve Atwater, RB Terrell Davis, TE Shannon Sharpe, DB John Lynch, CB Champ Bailey and Manning.

Who is the best Broncos running back of all time? ›

The Denver Broncos player with the most rushing yards in franchise history is Terrell Davis with 7,607 yards. This all-time rushing leader is followed by Floyd Little and Sammy Winder with 6,323 yards and 5,427 yards respectively.

Who has the most touchdowns in Broncos history? ›

Rod Smith is the career touchdown leader of the Denver Broncos having scored 71 touchdowns throughout his career.

Who are the quarterbacks for Denver? ›

As 2024 Training Camp powered by Ford approaches, we're taking a closer look at all three quarterbacks on the Broncos' roster. Jarrett Stidham, Zach Wilson and Bo Nix are set to compete for Denver's starting job, and each player spoke with DenverBroncos.com in mid-June.

How many QBs have the Browns had since 99? ›

From 1999 through end of the 2023 season, the team has had 38 players start at quarterback, with only three seasons (2001 with Tim Couch, 2019 and 2020 with Baker Mayfield) where the same quarterback started every game.

How many Mannings were quarterbacks? ›

Both Archie Manning and son Eli (another son, Peyton, left the state to flourish at the University of Tennessee) starred as quarterback at the University of Mississippi, which competes in the Southeastern Conference, as does archrival Mississippi State University.

How many seasons did Manning play in Denver? ›

Peyton Williams Manning (born March 24, 1976) is a retired American football quarterback. He played college football at University of Tennessee and a total of 18 seasons in the National Football League (NFL). Manning was with the Indianapolis Colts for 14 seasons and his last 4 seasons was with the Denver Broncos.

Top Articles
Oregon’s 7 best state parks for fishing, rock climbing and sand boarding - Lonely Planet
Oregon State Parks | Visit Oregon
Jps Occupational Health Clinic
Https //Paperlesspay.talx.com/Gpi
Subfinder Online
Davaba19
Tc-656 Utah
Promiseb Discontinued
Uscis Fort Myers 3850 Colonial Blvd
What Is Flipping Straights Ted Lasso
Allegra Commercial Actress 2022
Anchor Martha MacCallum Talks Her 20-Year Journey With FOX News and How She Stays Grounded (EXCLUSIVE)
manhattan cars & trucks - by owner - craigslist
How Nora Fatehi Became A Dancing Sensation In Bollywood 
Demystifying the C-Suite: A Close Look at the Top Executive Roles - 33rd Square
1800Comcast
Mobiloil Woodville Tx
Atl To London Google Flights
Longfellow's Works - Evangeline
O'reilly Auto Parts Near Me Open Now
Lanie Gardner: The Rising Star Behind the Viral Fleetwood Mac Cover - Neon Music - Digital Music Discovery & Showcase Platform
Magicseaweed Capitola
Thermal Pants Mens Walmart
Tyrone's Unblocked Games Basketball
Nydf Dancesport
Eotech Eflx Torque Specs
June Month Weather
Stuckey Furniture
Tulare Lake’s ghostly rebirth brings wonder — and hardship. Inside a community's resilience
Dl Delta Extranet
The Legend of Maula Jatt | Rotten Tomatoes
Whatcom County Food Handlers Permit
Shipstation Commercial Actress
Laurin Funeral Home
Marie Anne Thiebaud 2019
Dvax Message Board
Sdn Ohio State 2023
Cardholder.bhnincentives.com
Sheex Sheets Review (2024) | Mattress Nerd
China Rose Plant Care: Water, Light, Nutrients | Greg App 🌱
Skip The Games Albany
Myapps Tesla Ultipro Sign In
Fineassarri
Craigslist Pets Inland Empire
M&T Bank Branch Locations
Thoren Bradley Lpsg
Einschlafen in nur wenigen Minuten: Was bringt die 4-7-8-Methode?
Is There A Sprite Zero Shortage? - (September 2024)
Lowlifesymptoms Twitter
Unintelligible Message On A Warning Sign Crossword
Breckie Hill Shower Gif
19 BEST Stops on the Drive from Te Anau to Milford Sound +Road Trip Tips!
Latest Posts
Article information

Author: Nathanial Hackett

Last Updated:

Views: 5780

Rating: 4.1 / 5 (52 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Nathanial Hackett

Birthday: 1997-10-09

Address: Apt. 935 264 Abshire Canyon, South Nerissachester, NM 01800

Phone: +9752624861224

Job: Forward Technology Assistant

Hobby: Listening to music, Shopping, Vacation, Baton twirling, Flower arranging, Blacksmithing, Do it yourself

Introduction: My name is Nathanial Hackett, I am a lovely, curious, smiling, lively, thoughtful, courageous, lively person who loves writing and wants to share my knowledge and understanding with you.