Why was Jalen Hurts' hail mary pass woefully short? Video shows real reason behind Eagles QB's weak

Jalen Hurts turned in a spectacular performance during Super Bowl LVII. Despite his Philadelphia Eagles being defeated by the Kansas City Chiefs, a case can be made that he was the best player on the field during the game.

Jalen Hurts turned in a spectacular performance during Super Bowl LVII. Despite his Philadelphia Eagles being defeated by the Kansas City Chiefs, a case can be made that he was the best player on the field during the game.

He recorded four total touchdowns in an incredible losing effort. Hurts statistically outplayed even Patrick Mahomes, who was named the Super Bowl MVP.

Philadelphia let a 10-point halftime lead slip away during the second half, allowing the Chiefs to complete an epic comeback victory. Following the Chiefs' final drive of the game, the Eagles took over with just seconds remaining on the clock and trailing by three. Philadelphia didn't have enough time to try to get into field goal range, so they opted for a Hail Mary instead.

march madness logo

70% Win

(110-25-1)

70% Win

(110-25-1)

70% Win

(110-25-1)

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "NFL", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();

On the final play of Super Bowl LVII, Jalen Hurts sent all of his wide receivers far down the field. He loaded up to unleash a Hail Mary, hoping for a miraculous jumpball to fall in the Eagles' favor.

The issue was that the football only traveled about 50 yards in the air, while the receivers were set up further downfield. Hurts' pass never had a chance as it fell uncontested.

Jalen Hurts received criticism following the game for his poor attempt at a Hail Mary. His arm strength was called into question and claims were made that he may be incapable of launching such passes downfield. A video surfaced the following morning that attempted to explain why the throw fell as short as it did.

As seen in the video, Jalen Hurts appears to step on center Jason Kelce's foot while loading up on his pass attempt. This likely affected the power and trajectory of the throw, causing it to fall woefully short of the endzone.

Did Jalen Hurts cost the Eagles a Super Bowl LVII victory?

Jalen Hurts

Jalen Hurts made two crucial mistakes during Super Bowl LVII that contributed to the Eagles' loss to the Chiefs. In addition to the failed Hail Mary attempt, he also committed a costly turnover.

During the second quarter of the game, Hurts fumbled the football while being tackled, which resulted in a Nick Bolton touchdown recovery. The score tied the game at 14 for the Chiefs.

Despite two major errors, Hurts is far from the reason why the Eagles lost the game. He was excellent for most of it, totaling more than 300 yards and four touchdowns. A more legitimate case could be made that Hurts is the reason why the Eagles weren't blown out despite giving up 38 points.

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1399110, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1399110); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1399110) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1399110) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKaWoXyvsdasZLCgqWK3orjEp2ShraKpwG60wKKjZqWRp8ZuvMCsqmavn5qztrjLsmSsoJ%2BnwW7CyJ2cqGWjnby4v4yrnJqkXaeyor%2FOp2SbnZieu6V5xJqepZ2jYr6jedJmrp6Zm2KutcDEpqet

 Share!