
The BJK Collection
The BJK Collection
Boasting a clean aesthetic, the BJK tennis clothing collection at Golden Age of Tennis features styles inspired by the tennis legend Billie Jean King. The American former number one tennis player won 39 major titles, and the collection showcases the classic skort she wore at Wimbledon in 1980. Whether you are searching for a new outfit for the court or a stylish stand-alone chic garment, you will find it within the BJK Tennis clothing range. The collection is brought to you from Maggia, and across each piece of the BJK tennis clothing range, you will notice the iconic Maggia badge, which has been stitched into each piece of the apparel. Why not check out our range of men’s clothing for more inspiration?
{
loading = true;
const params = new URLSearchParams(window.location.search);
const newParams = new URLSearchParams(new FormData($refs.filter_form));
newParams.set('page', 1);
newParams.set('filter.v.availability', 1);
if(params.get('sort_by')){
newParams.set('sort_by', params.get('sort_by'));
}
fetch(`/collections/the-bjk-collection?${newParams.toString()}`)
.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;
document.title = html_div.querySelector('title').textContent;
// update url without refreshing the page
history.replaceState(null, null, '?' + newParams.toString());
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>