The house that makes even grown-ups dream! With its windows and door that closes, this large flower-covered hideaway visited by small animals is an ideal playground for children! Spacious and light. Very easy to assemble. Quick to fold up and store in its box. 3 windows and a fabric door that can be opened and closed. Durable non-woven easy-clean polyester fabric. A matching storage box. Set includes 1 printed polyester fabric with 3 windows and 1 door, plastic poles, 1 set of instructions.
// Eemaldame varasemad click-sündmused, et vältida topeltlisamisi
$(document).off('click', '.addToCartBtn');
// Seome click-sündmuse kindlalt üks kord
$(document).on('click', '.addToCartBtn', function(e) {
e.preventDefault();
var f = $(this).closest('form');
if (typeof Roller !== 'undefined' && typeof Roller.addToCart === 'function') {
Roller.addToCart(
f.find('input[name=product_id]').val(),
f.find('input.sre-product-quantity').val(),
f.find('input[name=parent_article_id]').val()
);
} else {
console.warn('Roller.addToCart ei ole saadaval');
}
});