The Borg Collection
Our highly anticipated, vintage collection of pieces originally designed for and highly inspired by one of the no1 tennis players in the world- Björn Rune Borg. Born in Sweden, Borg became one of the leading tennis players of his time, including wins at Roland Garros and Wimbledon - securing an astonishing 11 grand slam wins by the age of 26. Our Björn Borg tennis clothing incorporates his legendary clothing style with high-performance materials to give off a clean aesthetic. Perfect for those looking for a vintage look, you can indulge in our range of Björn Borg tennis clothing collection now - from t-shirts to wristbands.
{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString()
loading = true;
fetch('/collections/the-borg-collection?view=native&' + queryString + '&filter.v.availability=1')
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
// update product grid view
let html_dom = html_div.querySelector('#ProductGridContainer').innerHTML;
document.querySelector('#ProductGridContainer').innerHTML = html_dom;
// update filter view
let filters_dom = html_div.querySelector('#ProductFilters').innerHTML;
document.querySelector('#ProductFilters').innerHTML = filters_dom;
// update url without refreshing the page
history.replaceState(null, null, '?' + queryString + '&filter.v.availability=1&page=1');
window.endlessScroll.destroy()
window.endlessScroll = new Ajaxinate({
container: '#product-grid',
loadingText: 'Loading...',
});
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>