Apple Cinnamon Oatmeal Dog Treats (2024)

NEVER MISS A POST!

Sign up for free and be the first to get notified about updates.

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);

Apple Cinnamon Oatmeal Dog Treats (2024)

FAQs

Is apple cinnamon oatmeal good for dogs? ›

Never feed your dog flavored oatmeal, as it often contains more sugar and may even have artificial sweeteners, such as xylitol, which is toxic to dogs. Once the oatmeal is cooked, serve it at room temperature—giving your dog food that's too hot can cause burns inside their mouth.

Can dogs eat apple cinnamon muffins? ›

Powdered cinnamon can cause irritation, difficulty breathing, or choking, whereas big amounts of the spice can lead to vomiting and diarrhea. Avoid feeding your dog cinnamon-based baked goods as they can contain ingredients that are toxic to dogs, such as chocolate and raisins.

Can dogs eat oatcakes? ›

Your dog will love these oatcakes, they are tasty, healthy, smell great, and just so easy to make! And from preparation to cooking time they take less than one hour!

What can I use instead of oatmeal for dogs? ›

If you're considering oatmeal as an easily digestible option for a dog with an upset stomach, go for white or brown rice instead. “Those are much more tried-and-true and safe,” Watkins says. Oatmeal does, however, make a healthy addition to your dog's shampoo, Watkins says.

Why put cinnamon in dog treats? ›

In small amounts, cinnamon is safe for dogs, but it's not necessary for their diet. Cinnamon has anti-inflammatory and anti-bacterial properties beneficial to dogs. Some dogs may find the strong smell and taste of cinnamon off-putting. Avoid giving your dog cinnamon in large amounts, as it can irritate the mouth.

Is cinnamon anti-inflammatory for dogs? ›

Cinnamon has anti-fungal and anti-inflammatory properties.

Cinnamon is beneficial to dogs who suffer from chronic yeast infections. It's also good for your dog's joints and can help alleviate joint pain and muscle soreness.

Why can't dogs have cinnamon? ›

Cinnamon is non-toxic to dogs according to the ASPCA. In small amounts, which means one teaspoon or less per serving as an occasional treat, it is perfectly safe and may even offer health benefits. However, in large quantities, it may irritate the mouth or stomach, cause low blood sugar or even liver disease.

Can I give my dog apple cinnamon Cheerios? ›

No, you should not give your dog cereal that contains cinnamon. There is a high amount of sugar in most breakfast cereals. Additionally, cinnamon cereals contain other additives and preservatives that are unhealthy or dangerous for your dog to eat.

Can my dog have cinnamon applesauce? ›

Refrain from feeding your dog cinnamon-flavored applesauce from the grocery store, which often contains added sugar that can adversely affect their health.

Why can't dogs have oats? ›

In particular, raw oats can be difficult for your dog to digest and may cause stomach upset. You should also steer clear of flavored varieties, which are often high in sugar and may contain ingredients that can be toxic to dogs, such as chocolate, raisins, or the sugar alcohol xylitol ( 11 , 12 ).

Can dogs eat oatmeal with cinnamon? ›

Can Dogs Eat Oatmeal With Cinnamon? Yes, but only in small amounts. Cinnamon isn't toxic to dogs, but much like humans, they'll feel some adverse effects from consuming too much. If you want to add cinnamon into your dog's oatmeal, don't use very much, and make sure your dog doesn't react poorly.

Is oatmeal or rice better for dogs? ›

Plain rice is the way to go—your dog will still find it delicious. Use whole grain oatmeal and steer away from quick oatmeal. In particular, do not give your dog flavored instant oats that may have a lot of added sugar, or even sweeteners, like xylitol, that are toxic to dogs.

Can my dog eat cinnamon? ›

The good news is that cinnamon is not toxic to dogs, though cinnamon essential oil can be toxic for pups. Your dog will not suffer fatal toxic effects from consuming too much cinnamon, but that does not necessarily mean you should be sprinkling it on kibble.

Can I give my dog a scrambled egg? ›

Eggs are nutritious for both people and dogs. They can be tasty treats or a hearty breakfast, whether they're hard-boiled, poached, scrambled, or over easy. A cooked entire egg or yolk can be good for your dog, unless your pet has a pre-existing health condition like acute pancreatitis or diabetes.

Can I give Quaker oats to my dog? ›

Is Oatmeal Good for Dogs? Plain, cooked oatmeal can be a great addition to your dog's diet. This heart-healthy breakfast is rich in soluble fiber, vitamins, and minerals such as iron, zinc, and B vitamins that help support your dog's coat and skin. The high fiber content helps promote digestion and weight management.

Can dogs have cinnamon flavored oatmeal? ›

Can Dogs Eat Oatmeal With Cinnamon? Yes, but only in small amounts. Cinnamon isn't toxic to dogs, but much like humans, they'll feel some adverse effects from consuming too much. If you want to add cinnamon into your dog's oatmeal, don't use very much, and make sure your dog doesn't react poorly.

Can dogs eat cinnamon sugar oatmeal? ›

No. Cinnamon oatmeal typically contains a lot of sugar, preservatives, and other additives that are toxic to your dog. Some brands list part of their ingredients as “cinnamon and other spices.” This means there could be nutmeg in the oatmeal, which is toxic for your pup.

Is Quaker apple cinnamon oatmeal Healthy? ›

Quaker® Apples & Cinnamon Instant Oatmeal

One serving (33 g) of Quaker® instant oatmeal supplies 30% of the daily amount of fibres shown to help reduce cholesterol. Part of a heart-healthy diet. A healthy diet low in saturated and trans fat may reduce the risk of heart disease.

Is apple cinnamon applesauce good for dogs? ›

Refrain from feeding your dog cinnamon-flavored applesauce from the grocery store, which often contains added sugar that can adversely affect their health.

References

Top Articles
Latest Posts
Article information

Author: Melvina Ondricka

Last Updated:

Views: 5540

Rating: 4.8 / 5 (68 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Melvina Ondricka

Birthday: 2000-12-23

Address: Suite 382 139 Shaniqua Locks, Paulaborough, UT 90498

Phone: +636383657021

Job: Dynamic Government Specialist

Hobby: Kite flying, Watching movies, Knitting, Model building, Reading, Wood carving, Paintball

Introduction: My name is Melvina Ondricka, I am a helpful, fancy, friendly, innocent, outstanding, courageous, thoughtful person who loves writing and wants to share my knowledge and understanding with you.