Spin Tops & YoYos
Watch wooden Mader spinning tops as they spin round and round, sometimes for minutes. So enticing when sat on a shelf - you can't help picking one up and giving it a twirl.
Spinning tops never go out of style, no matter how old you are. And these are particularly special with so many different colour combinations in elegant shapes and sizes.
Handcrafted in Austria from a variety of woods native to Europe. Each top is made from a single piece of wood and then hand painted.
Spinning tops never go out of style, no matter how old you are. And these are particularly special with so many different colour combinations in elegant shapes and sizes.
Handcrafted in Austria from a variety of woods native to Europe. Each top is made from a single piece of wood and then hand painted.
{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString();
let pattern = /[?&]sort_by=/;
let collUrl = location.search;
let newUrl = queryString;
if(pattern.test(collUrl)) {
const theString = window.location.search;
const urlParams = new URLSearchParams(theString);
const sorty = urlParams.get('sort_by')
newUrl = queryString + '&sort_by=' + sorty;
console.log(sorty);
}
console.log(queryString);
console.log(newUrl);
loading = true;
fetch('/collections/spinning-tops-yoyos?' + newUrl)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
let html_dom = html_div.querySelector('#dataMix').innerHTML;
document.querySelector('#dataMix').innerHTML = html_dom;
// update url without refreshing the page
history.replaceState(null, null, '?' + newUrl);
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>