The Connors Collection
Jimmy Connors took the tennis world by storm, holding the number one spot with eight grand slam wins, which has put him up with the greatest tennis players of all time. Our Connors tennis clothing collection ranges from some of his most famous active attire - on and off the court. Perfect for those looking for a vintage look, you can now indulge in our stunning range of tennis clothing with globally recognised brands such as Sergio Tacchini, available in sleeveless tops and much more.
{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString()
loading = true;
fetch('/collections/the-connors-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);
})"
>