Cleaning robots
Loading...
{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString();
loading = true;
fetch('/collections/cleaning-robots?' + queryString)
.then(response => response.text())
.then(data => {
const tempDiv = document.createElement('div');
tempDiv.innerHTML = data;
const newContent = tempDiv.querySelector('#ProductGridContainer').innerHTML;
document.querySelector('#ProductGridContainer').innerHTML = newContent;
// Update the URL without reloading the page
history.replaceState(null, null, '?' + queryString);
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})">
Filter:
Loading...