NFL Weekly Passing Leaders of the 1990's (2024)

By angelsson81

10m

171 Questions

57 Plays57 Plays

57 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 : () => {checkToOpenFlorinPlayGoalModal();}});} 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();}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');}}startGame(600);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/171

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

10:00

Year - WeekQuarterbackTeam - Yards
1990 - Week 1HOU - 397
1990 - Week 2KAN - 395
1990 - Week 3SFO - 398
1990 - Week 4HOU - 355
1990 - Week 5CIN - 490
1990 - Week 6SFO - 476
1990 - Week 7DEN - 317
1990 - Week 8HOU - 381
1990 - Week 9SFO - 411
1990 - Week 10SEA - 306
1990 - Week 11HOU - 322
1990 - Week 12HOU - 300
1990 - Week 13TAM - 351
1990 - Week 14MIA - 365
1990 - Week 15HOU - 527
1990 - Week 16PHO - 381
1990 - Week 17PHO - 301
1991 - Week 1BUF - 381
1991 - Week 2BUF - 363
1991 - Week 3SEA - 322
1991 - Week 4IND - 348
1991 - Week 5NYG - 368
1991 - Week 6HOU - 334
1991 - Week 7HOU - 423
1991 - Week 8BUF - 392
1991 - Week 9DAL - 331
1991 - Week 10RAM - 346
1991 - Week 11WAS - 442
1991 - Week 12HOU - 399
1991 - Week 13HOU - 324
1991 - Week 14SFO - 347
1991 - Week 15BUF - 347
1991 - Week 16NOR - 320
1991 - Week 17SFO - 338
1992 - Week 1NYJ - 366
1992 - Week 2SFO - 449
1992 - Week 3RAI - 395
1992 - Week 4ATL - 351
1992 - Week 5DEN - 311
1992 - Week 6BUF - 302
1992 - Week 7SFO - 399
1992 - Week 8SDG - 355
1992 - Week 9SDG - 256
1992 - Week 10SDG - 294
1992 - Week 11IND - 330
1992 - Week 12IND - 266
1992 - Week 13SFO - 342
1992 - Week 14RAM - 342
1992 - Week 15PHI - 365
1992 - Week 16ATL - 340
1992 - Week 17ATL - 374
1993 - Week 1NYJ - 371
1993 - Week 2NOR - 341
1993 - Week 3PHI - 360
1993 - Week 4RAM - 316
1993 - Week 5DAL - 317
1993 - Week 6DEN - 367
Year - WeekQuarterbackTeam - Yards
1993 - Week 7RAM - 294
1993 - Week 8PIT - 355
1993 - Week 9RAI - 424
1993 - Week 10IND - 376
1993 - Week 11MIN - 366
1993 - Week 12CLE - 316
1993 - Week 13SFO - 462
1993 - Week 14GNB - 402
1993 - Week 15MIA - 344
1993 - Week 16PHO - 431
1993 - Week 17RAM - 294
1993 - Week 18DEN - 361
1994 - Week 1MIA - 473
1994 - Week 2NWE - 380
1994 - Week 3WAS - 381
1994 - Week 4MIA - 431
1994 - Week 5MIN - 355
1994 - Week 6NWE - 321
1994 - Week 7KAN - 393
1994 - Week 8PHI - 310
1994 - Week 9DEN - 349
1994 - Week 10MIN - 420
1994 - Week 11NWE - 426
1994 - Week 12MIN - 400
1994 - Week 13NYJ - 382
1994 - Week 14GNB - 366
1994 - Week 15SDG - 337
1994 - Week 16SFO - 350
1994 - Week 17NOR - 343
1995 - Week 1CAR - 329
1995 - Week 2SFO - 331
1995 - Week 3ATL - 386
1995 - Week 4CIN - 356
1995 - Week 5MIA - 450
1995 - Week 6OAK - 333
1995 - Week 7MIA - 368
1995 - Week 8PIT - 359
1995 - Week 9WAS - 345
1995 - Week 10ATL - 362
1995 - Week 11MIN - 342
1995 - Week 12SFO - 382
1995 - Week 13ARI - 413
1995 - Week 14MIA - 343
1995 - Week 15STL - 372
1995 - Week 16SFO - 425
1995 - Week 17DET - 352
1996 - Week 1BUF - 313
1996 - Week 2NYJ - 319
1996 - Week 3NYJ - 325
1996 - Week 4JAX - 432
1996 - Week 5ARI - 366
1996 - Week 6BAL - 353
1996 - Week 7GNB - 395
1996 - Week 8JAX - 421
1996 - Week 9BAL - 429
1996 - Week 10NWE - 419
1996 - Week 11ARI - 522
Year - WeekQuarterbackTeam - Yards
1996 - Week 12NYJ - 352
1996 - Week 13ARI - 367
1996 - Week 14JAX - 356
1996 - Week 15SFO - 393
1996 - Week 16ATL - 363
1996 - Week 17WAS - 346
1997 - Week 1NWE - 340
1997 - Week 2DET - 331
1997 - Week 3MIN - 334
1997 - Week 4OAK - 374
1997 - Week 5SDG - 358
1997 - Week 6DAL - 317
1997 - Week 7MIA - 372
1997 - Week 8BAL - 331
1997 - Week 9SEA - 409
1997 - Week 10STL - 401
1997 - Week 11NYJ - 322
1997 - Week 12ARI - 388
1997 - Week 13MIA - 389
1997 - Week 14CIN - 378
1997 - Week 15ARI - 337
1997 - Week 16JAX - 317
1997 - Week 17BAL - 349
1998 - Week 1NYJ - 415
1998 - Week 2SFO - 303
1998 - Week 3WAS - 383
1998 - Week 4GNB - 388
1998 - Week 5MIN - 442
1998 - Week 6MIA - 323
1998 - Week 7SFO - 331
1998 - Week 8JAX - 353
1998 - Week 9NOR - 325
1998 - Week 10MIN - 316
1998 - Week 11ARI - 465
1998 - Week 12NWE - 423
1998 - Week 13DAL - 455
1998 - Week 14NYJ - 418
1998 - Week 15MIN - 345
1998 - Week 16ARI - 394
1998 - Week 17DEN - 338
1999 - Week 1WAS - 382
1999 - Week 2MIN - 364
1999 - Week 3IND - 404
1999 - Week 4NWE - 393
1999 - Week 5MIA - 393
1999 - Week 6DEN - 363
1999 - Week 7OAK - 352
1999 - Week 8STL - 328
1999 - Week 9STL - 305
1999 - Week 10CHI - 422
1999 - Week 11CHI - 357
1999 - Week 12SDG - 404
1999 - Week 13SFO - 437
1999 - Week 14NWE - 379
1999 - Week 15CAR - 368
1999 - Week 16WAS - 471
1999 - Week 17ARI - 396
NFL Weekly Passing Leaders of the 1990's (2024)
Top Articles
Latest Posts
Article information

Author: Delena Feil

Last Updated:

Views: 6046

Rating: 4.4 / 5 (65 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Delena Feil

Birthday: 1998-08-29

Address: 747 Lubowitz Run, Sidmouth, HI 90646-5543

Phone: +99513241752844

Job: Design Supervisor

Hobby: Digital arts, Lacemaking, Air sports, Running, Scouting, Shooting, Puzzles

Introduction: My name is Delena Feil, I am a clean, splendid, calm, fancy, jolly, bright, faithful person who loves writing and wants to share my knowledge and understanding with you.