Dragon Oven Mitts Kit

Island Yarn


$ 33.95

If any of you had a pool going about how long it would take for a Dragon Scales Oven Mitts pattern to appear - wait no more!  Haha!  I love the oven mitts - and I LOVE Dragon Scales - and it felts SO beautifully!  Check out A Bag of Dragons to see more beautiful felted Dragon Scales happiness.

This kit includes 3 balls of Noro Kureyon - 2 in one color, 1 in another - enough for you to make 1 pair of Dragon Oven Mitts and a pattern download.  The download will come with your order confirmation.  Click "view order", then there will be a link that says you have Ravelry downloads.  Click that and your pattern will appear!  You'll want to have Size 10.5 (6.5mm) Dpn's or a long circular for magic loop on hand.  And either Knitting Barber cords or a crochet hook and waste yarn.

Like all of our oven mitts, these are just GREAT gifts (if you can bear to let them go) and unusual - I bet of all the knitting love you have rained on your friends and family - oven mitts were not in the mix - until now!  I've been using them at home for months now and they are super insulating - I even grab the 500 degree heated dutch oven out of the oven with them and no problems!  The sample you see here was made with Set #1.

**FREE Shipping within the US when you spend $75+ so check out our other great kits and get yourself some free shipping!

Related Products


const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/products/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }