Juniper Moon Farm

Juniper Moon Farm Beatrix

Island Yarn Company


$ 19.99

The specs: 54% Extrafine Merino Wool, 30% Angora, 16% Nylon, 50 grams, 109 yards, Bulky weight - 3-3.75 sts/inch on a US 9 to 11

The love:

OHHHHHH!  I promise, I'll come up with something to write here after I finish taking a very long nap inside one of these boxes of Beatrix.  Heaven!

For the patterns that you see here - 

Pietra requires

10 (11, 12, 13, 14) x 50g balls of Juniper Moon Farm Beatrix in color 03 Sepia to fit bust: 33 (37, 41, 45, 49)“/84 (94, 104, 114, 124)cm.

Kate Poncho requires

5 (6) x 50g balls of Juniper Moon Farm Beatrix in color 05 Marble.

Alisa requires

3 x 50g balls of Juniper Moon Farm Beatrix in color 06 Slate (A).
3 x 50g balls of Juniper Moon Farm Beatrix in color 02 Rose (B).

Scott Blanket requires

8 x 50g balls of Juniper Moon Farm Beatrix in color 02 Rose.

Nadya vest requires

6 (6, 7, 8, 8) x 50g balls of Juniper Moon Farm Beatrix in color 05 Marble to fit bust: 33 (37, 41, 45, 49)“/84 (94, 104, 114, 124)cm.

Eliza requires

5 x 50g balls of Juniper Moon Farm Beatrix in color 04 Ivory.

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(), ); }