• Jeff is one of the world's most respected comedians. He's the largest-selling comedy-recording artist, a multiple Grammy Award nominee, and bestselling author of more than twenty-six books.

  • Jeff has made more people laugh than anyone on earth, but at the heart of it, Jeff Foxworthy is a guy. Born and raised in Atlanta, Jeff worked hard to be a great comedian, worked hard to marry up (and he did), and is still working hard to take care of his daughters.

  • Jeff is passionate about the outdoors. He loves to hunt and spend time in the outdoors every spare minute on his Georgia farm.

  • Jeff is one of the world's most respected comedians. He's the largest-selling comedy-recording artist, a multiple Grammy Award nominee, and bestselling author of more than twenty-six books. He's hosted or starred in five TV series and was also a part of one of the most successful comedy tours of all time, The Blue Collar Comedy Tour. And let's not forget he's given rednecks more jokes than they know what to do with...

  • Jeff has excelled as a comic, an author, and a TV personality for over 25 years. He has made more people laugh than anyone on earth, but at the heart of it, Jeff Foxworthy is a guy. Born and raised in Atlanta, Jeff worked hard to be a great comedian, worked hard to marry up (and he did), and is still working hard to take care of his daughters. Jeff is just a guy. So don’t be mad that his jokes are better than yours.

  • Jeff might be one of the funniest guys on the planet, but he is passionate about the outdoors. He loves to hunt and spend time in the outdoors every spare minute on his Georgia farm. Foxworthy Outdoors puts this obsession for hunting and fishing into motion through webisodes, licensed products, and a good excuse to climb into a tree stand.

...

...

Timeline

Timeline

  • 1984

    Jeff Wins Great Southeastern Laugh-Off

    1987

    Jeff Writes His First "You Might Be a Redneck if..." Joke

    1990

    Jeff Wins “Best Stand-Up Comic” at 1990 American Comedy Awards

    1993

    You Might Be A Redneck If...launches

    1995

    The Jeff Foxworthy Show

    1996

    Jeff Nominated For a Grammy Award

    1998

    The Album, Totally Committed released

    1999

    The Foxworthy Countdown Radio Show Launches

    2004

    Blue Collar TV Launches

    2005

    Jeff Foxworthy Comedy Central Roast

    2005

    The First Redneck Dictionary Released

    2006

    Jeff’s Second Redneck Dictionary Released

    2007

    The Final Redneck Dictionary

    2008

    Jeff Releases His First Children’s Book

    2009

    Silly Street Released

    2009

    Jeff Hosts Are You Smarter Than A 5th Grader?

    2012

    Jeff Hosts The American Bible Challenge

    2015

    Jeff Launches 24/7 Comedy Channel Exclusively on SiriusXM

function fetchAndUpdateJoke(elementId) { fetch('https://webverie-api-f99d4f642dfe.herokuapp.com/jokes/random') .then(response => response.json()) .then(data => { const element = document.getElementById(elementId); if (element) { const pTag = element.querySelector('p'); if (pTag) { pTag.textContent = data.text; } else { console.error("No

tag found inside the element with ID: " + elementId); } } else { console.error("Element with ID: " + elementId + " not found."); } }) .catch(error => { console.error('Error fetching the joke:', error); }); } document.addEventListener('DOMContentLoaded', function() { fetchAndUpdateJoke('redneck-joke-punchline'); });