Ole Miss football head coach Lane Kiffin is one of the most familiar names in college football, especially in the SEC. Likewise, his relationship with girlfriend Jennifer Dardano happened to be a hot topic of discussion in the celebrity world.
His initial breakout as a football coach came when he took the reins at the NFL side, the Oakland Raiders, in 2007 as a 32-year-old. At the time, he was the youngest NFL head coach of the modern era, until Sean McVay snatched the claim in 2017 while coaching the Rams.
Lane Kiffin's relationship with Jennifer Dardano
•
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": "College Football", "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, }; }();Kiffin's life outside football features his love story with his girlfriend, Jennifer Dardano, a realtor. Kiffin and Dardano are believed to have started dating in 2017, right after Kiffin divorced his ex-wife, Layla Reaves.
They seem to have met way before then, as Dardano is a graduate of USC, where Kiffin previously worked as offensive coordinator and later as head coach. At that time, Kiffin was still married to Layla Reaves. The two had gotten married in 2004 and remained so until their divorce in 2016. With Reaves, Kiffin has three children.
Dardani originally hails from Alabama, but she grew up in Florida. During her college days, she was associated with the Junior League of Boca Raton's recruitment board. Later, she became a Development Onsite Salesperson at 1200 in Hillsboro Beach.
Per multiple reports, Jennifer Dardano is a real estate agent with Douglas Elliman, Florida, specializing in luxury estates and waterfront homes. Her net worth is estimated at around $500k.
Lane Kiffin's personal football connections and coaching career
Lane Kiffin comes from a family with deep football connections. His dad, Monte Kiffin, is a longtime defensive coordinator in the NFL. His brother, Chris, played as a defensive lineman for Colorado State and now works as the defensive line coach for the Cleveland Browns.
His ex-father-in-law also played college football for the Florida Gators and went on to have a successful career as a quarterback in the NFL and USFL.
Lane Kiffin has achieved an 85-47 record as a coach in charge of four different schools; USC, Tennessee, Florida Atlantic, and Ole Miss. His innovative offensive schemes and top recruiting ability are two features that have marked him out as a coach.
He was the offensive coordinator at USC from 2005 to 2006. His next job saw him in charge of the Oakland Raiders in the NFL, but his time there wasn't impressive.
He made a return to college football with a job as the coach of the Tennessee Vols. After getting fired at Tennessee, he returned again to USC, this time as the head coach of the Trojans.
Kiffin left USC in 2013 and took up a role as the offensive coordinator at Alabama. His next stop after Alabama was Florida Atlantic, where he was again the head coach from 2017 to 2019. He has been calling the moves at Ole Miss since 2020.
" 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": 1594863, "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(1594863); 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(1594863) >= 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(1594863) .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 }); })();ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJufobmms8RmnainpJeurbiOsJ%2BoZZyWu6Z5yqKdn6GeYsBus8iro5%2BqmZq7pXnJnqWnoZaav26wwKubmqafYrK5vMuoqaKml2K8rbGMpqCsq12dsG6%2FjKmcq6ufo66tecuinZ5lk6q%2Fs7HNrWSrnZyWwaq7zayfoqhdqMGiwNSs