20 Thanksgiving Leftover Recipe Ideas - Jessica N. Turner | The Mom Creative (2024)

Sign up for my email list, where I send the best curated deals and finds on the Internet. Every single find is hand-picked by me for you. You’ll love it.

function extend(destination, source) {
for (var prop in source) {
destination[prop] = source[prop];
}
}

if (!Mimi) var Mimi = {};
if (!Mimi.Signups) Mimi.Signups = {};

Mimi.Signups.EmbedValidation = function() {
this.initialize();

var _this = this;
if (document.addEventListener) {
this.form.addEventListener('submit', function(e){
_this.onFormSubmit(e);
});
} else {
this.form.attachEvent('onsubmit', function(e){
_this.onFormSubmit(e);
});
}
};

extend(Mimi.Signups.EmbedValidation.prototype, {
initialize: function() {
this.form = document.getElementById('ema_signup_form');
this.submit = document.getElementById('webform_submit_button');
this.callbackName = 'jsonp_callback_' + Math.round(100000 * Math.random());
this.validEmail = /.+@.+\..+/
},

onFormSubmit: function(e) {
e.preventDefault();

this.validate();
if (this.isValid) {
this.submitForm();
} else {
this.revalidateOnChange();
}
},

validate: function() {
this.isValid = true;
this.emailValidation();
this.fieldAndListValidation();
this.updateFormAfterValidation();
},

emailValidation: function() {
var email = document.getElementById('signup_email');

if (this.validEmail.test(email.value)) {
this.removeTextFieldError(email);
} else {
this.textFieldError(email);
this.isValid = false;
}
},

fieldAndListValidation: function() {
var fields = this.form.querySelectorAll('.mimi_field.required');

for (var i = 0; i < fields.length; ++i) { var field = fields[i], type = this.fieldType(field); if (type === 'checkboxes' || type === 'radio_buttons' || type === 'age_check') { this.checkboxAndRadioValidation(field); } else { this.textAndDropdownValidation(field, type); } } }, fieldType: function(field) { var type = field.querySelectorAll('.field_type'); if (type.length) { return type[0].getAttribute('data-field-type'); } else if (field.className.indexOf('checkgroup') >= 0) {
return 'checkboxes';
} else {
return 'text_field';
}
},

checkboxAndRadioValidation: function(field) {
var inputs = field.getElementsByTagName('input'),
selected = false;

for (var i = 0; i < inputs.length; ++i) { var input = inputs[i]; if((input.type === 'checkbox' || input.type === 'radio') && input.checked) { selected = true; } } if (selected) { field.className = field.className.replace(/ invalid/g, ''); } else { if (field.className.indexOf('invalid') === -1) { field.className += ' invalid'; } this.isValid = false; } }, textAndDropdownValidation: function(field, type) { var inputs = field.getElementsByTagName('input'); for (var i = 0; i < inputs.length; ++i) { var input = inputs[i]; if (input.name.indexOf('signup') >= 0) {
if (type === 'text_field') {
this.textValidation(input);
} else {
this.dropdownValidation(field, input);
}
}
}
this.htmlEmbedDropdownValidation(field);
},

textValidation: function(input) {
if (input.id === 'signup_email') return;

if (input.value) {
this.removeTextFieldError(input);
} else {
this.textFieldError(input);
this.isValid = false;
}
},

dropdownValidation: function(field, input) {
if (input.value) {
field.className = field.className.replace(/ invalid/g, '');
} else {
if (field.className.indexOf('invalid') === -1) field.className += ' invalid';
this.onSelectCallback(input);
this.isValid = false;
}
},

htmlEmbedDropdownValidation: function(field) {
var dropdowns = field.querySelectorAll('.mimi_html_dropdown');
var _this = this;

for (var i = 0; i < dropdowns.length; ++i) { var dropdown = dropdowns[i]; if (dropdown.value) { field.className = field.className.replace(/ invalid/g, ''); } else { if (field.className.indexOf('invalid') === -1) field.className += ' invalid'; this.isValid = false; dropdown.onchange = (function(){ _this.validate(); }); } } }, textFieldError: function(input) { input.className = 'required invalid'; input.placeholder = input.getAttribute('data-required-field'); }, removeTextFieldError: function(input) { input.className = 'required'; input.placeholder = ''; }, onSelectCallback: function(input) { if (typeof Widget === 'undefined' || !Widget.BasicDropdown) return; var dropdownEl = input.parentNode, instances = Widget.BasicDropdown.instances, _this = this; for (var i = 0; i < instances.length; ++i) { var instance = instances[i]; if (instance.wrapperEl === dropdownEl) { instance.onSelect = function(){ _this.validate() }; } } }, updateFormAfterValidation: function() { this.form.className = this.setFormClassName(); this.submit.value = this.submitButtonText(); this.submit.disabled = !this.isValid; this.submit.className = this.isValid ? 'submit' : 'disabled'; }, setFormClassName: function() { var name = this.form.className; if (this.isValid) { return name.replace(/\s?mimi_invalid/, ''); } else { if (name.indexOf('mimi_invalid') === -1) { return name += ' mimi_invalid'; } else { return name; } } }, submitButtonText: function() { var invalidFields = document.querySelectorAll('.invalid'), text; if (this.isValid || !invalidFields) { text = this.submit.getAttribute('data-default-text'); } else { if (invalidFields.length || invalidFields[0].className.indexOf('checkgroup') === -1) { text = this.submit.getAttribute('data-invalid-text'); } else { text = this.submit.getAttribute('data-choose-list'); } } return text; }, submitForm: function() { this.formSubmitting(); var _this = this; window[this.callbackName] = function(response) { delete window[this.callbackName]; document.body.removeChild(script); _this.onSubmitCallback(response); }; var script = document.createElement('script'); script.src = this.formUrl('json'); document.body.appendChild(script); }, formUrl: function(format) { var action = this.form.action; if (format === 'json') action += '.json'; return action + '?callback=' + this.callbackName + '&' + serialize(this.form); }, formSubmitting: function() { this.form.className += ' mimi_submitting'; this.submit.value = this.submit.getAttribute('data-submitting-text'); this.submit.disabled = true; this.submit.className = 'disabled'; }, onSubmitCallback: function(response) { if (response.success) { this.onSubmitSuccess(response.result); } else { top.location.href = this.formUrl('html'); } }, onSubmitSuccess: function(result) { if (result.has_redirect) { top.location.href = result.redirect; } else if(result.single_opt_in || !result.confirmation_html) { this.disableForm(); this.updateSubmitButtonText(this.submit.getAttribute('data-thanks')); } else { this.showConfirmationText(result.confirmation_html); } }, showConfirmationText: function(html) { var fields = this.form.querySelectorAll('.mimi_field'); for (var i = 0; i < fields.length; ++i) { fields[i].style['display'] = 'none'; } (this.form.querySelectorAll('fieldset')[0] || this.form).innerHTML = html; }, disableForm: function() { var elements = this.form.elements; for (var i = 0; i < elements.length; ++i) { elements[i].disabled = true; } }, updateSubmitButtonText: function(text) { this.submit.value = text; }, revalidateOnChange: function() { var fields = this.form.querySelectorAll(".mimi_field.required"), _this = this; var onTextFieldChange = function() { if (this.getAttribute('name') === 'signup[email]') { if (_this.validEmail.test(this.value)) _this.validate(); } else { if (this.value.length === 1) _this.validate(); } } for (var i = 0; i < fields.length; ++i) { var inputs = fields[i].getElementsByTagName('input'); for (var j = 0; j < inputs.length; ++j) { if (this.fieldType(fields[i]) === 'text_field') { inputs[j].onkeyup = onTextFieldChange; inputs[j].onchange = onTextFieldChange; } else { inputs[j].onchange = function(){ _this.validate() }; } } } } }); if (document.addEventListener) { document.addEventListener("DOMContentLoaded", function() { new Mimi.Signups.EmbedValidation(); }); } else { window.attachEvent('onload', function() { new Mimi.Signups.EmbedValidation(); }); }})(this);

20 Thanksgiving Leftover Recipe Ideas - Jessica N. Turner | The Mom Creative (2024)

FAQs

What is made from Thanksgiving leftovers? ›

Instead, try turning your leftovers into a casserole, like our turkey divan, our chicken stuffing casserole, or our turkey pot pie; a soup, like our turkey noodle soup, our leftover turkey & wild rice soup, or our homemade turkey stock (made from your turkey carcass); or something lighter or more flavorful than before, ...

How do you deal with leftovers on Thanksgiving? ›

The answer is simple: leftovers can be kept in the refrigerator for three to four days. This means you have until the Monday after Thanksgiving to eat all those delicious leftovers or place them in the freezer to enjoy later. If you store leftovers in the freezer, they will be of best quality within 2-6 months.

Can I eat Thanksgiving leftovers on Sunday? ›

After being removed from heat (or the refrigerator), food should only be left out for two hours (or as little as one hour in hotter temperatures). Any leftovers should be consumed within three to four days of being refrigerated to avoid bacterial growth.

How long can Thanksgiving food be left out? ›

All perishable items should be refrigerated within two hours of coming out of the oven or refrigerator. After two hours, perishable food enters the danger zone. If food has been left out for more than two hours, discard items to prevent foodborne illness.

What is the day after Thanksgiving usually called? ›

The Day After Thanksgiving is also known as Black Friday.

What can I have for Thanksgiving instead of turkey? ›

Whatever the reason, here are 20 Thanksgiving recipes for a turkey-free table.
  • Roast Chicken With Maple Butter and Rosemary. Image. ...
  • Beef Wellington. Image. ...
  • Ombré Gratin. Image. ...
  • Skillet Pork Chops and Apples With Miso Caramel. Image. ...
  • Samosa Pie. Image. ...
  • Maple-Baked Salmon. Image. ...
  • Lasagna. Image. ...
  • Ina Garten's Make-Ahead Coquilles St.
Nov 10, 2022

How good are Thanksgiving leftovers good for? ›

The U.S. Department of Agriculture's Food Safety and Inspection Service recommends throwing out refrigerated leftovers after three to four days. If foods are kept in the freezer, they can usually still be consumed for three to four months.

What do people do after Thanksgiving dinner? ›

7 Fun Things to Do After Thanksgiving
  • Host a game night. Ask guests to bring their favorite board game. ...
  • Head outdoors. ...
  • Create a family scrapbook. ...
  • Write thankful letters. ...
  • Decorate for the holidays. ...
  • Volunteer together. ...
  • Organize a talent show.

What percentage of people prefer Thanksgiving leftovers? ›

According to the survey, an overwhelming majority of Americans, 94%, dine on a Thanksgiving leftover sandwich.

What should you not forget for Thanksgiving dinner? ›

Use this list to make sure you're prepared to have the feast you planned for.
  • Sweetened Condensed Milk. A number of tasty desserts rely on this often forgotten item. ...
  • Cranberries or Cranberry Sauce. ...
  • Chicken Stock or Broth. ...
  • Simply Done Containers. ...
  • Foil, Parchment Paper, Pastic Wrap. ...
  • Centerpiece. ...
  • Nuts or Dried Fruit. ...
  • Dinner Rolls.
Nov 25, 2019

Are leftovers OK after 5 days? ›

Leftovers can be kept for 3 to 4 days in the refrigerator. After that, the risk of food poisoning goes up. If you don't think you'll be able to eat leftovers within four days, freeze them right away. Frozen leftovers will stay safe for a long time.

Can you eat cooked turkey after 5 days? ›

USDA recommends using cooked turkey within 3 to 4 days, kept refrigerated (40°F or less). Refrigeration slows but does not stop bacterial growth. Turkey can be frozen for 3 to 4 months. Although safe indefinitely, frozen leftovers can lose moisture and flavor when stored for longer times in the freezer.

What is the 2 2 2 rule for leftovers? ›

Non-profit organisation Love Food, Hate Waste recommends the 2:2:2 rule. Two hours to get them in the fridge. Two days to eat them once they're in there. Or freeze them for up to two months.

Can you eat stuffing that's been left out overnight? ›

People have a habit of leaving the food out on the buffet table long after the meal is finished. If turkey, stuffing, or gravy is left out at room temperature (40 to 140°F) for over 2 hours it may no longer be safe to eat.

Can I eat my leftovers that were left out overnight? ›

Cooked food can only stay in the temperature danger zone for so long before it becomes unsafe to eat. Havern explains: "The maximum amount of time perishable foods can [spend] in the danger zone is two hours. At two hours, the food must be consumed, stored correctly, or thrown away.

What are 4 other traditional Thanksgiving foods? ›

The classic Thanksgiving dinner includes old-time favorites that never change: turkey, gravy, stuffing, potatoes, veggies, and pie. But the way these dishes are made or added to is everchanging because of food trends and different dietary requirements.

What are 3 foods that are eaten on Thanksgiving? ›

Millions of people across the United States will sit down to a traditional Thanksgiving meal, including turkey, potatoes, squash, corn, and cranberries.

Are the leftovers the best part of Thanksgiving? ›

Out of 2,000 U.S. residents surveyed who celebrate Thanksgiving, 70% said they believe leftovers taste better than their original meal served on Thanksgiving day, according to survey results from Stasher. More than half of the same participants said their Thanksgiving holiday would be ruined if there were no leftovers.

Top Articles
Latest Posts
Article information

Author: Van Hayes

Last Updated:

Views: 5526

Rating: 4.6 / 5 (46 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Van Hayes

Birthday: 1994-06-07

Address: 2004 Kling Rapid, New Destiny, MT 64658-2367

Phone: +512425013758

Job: National Farming Director

Hobby: Reading, Polo, Genealogy, amateur radio, Scouting, Stand-up comedy, Cryptography

Introduction: My name is Van Hayes, I am a thankful, friendly, smiling, calm, powerful, fine, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.