Hedge NYC
Elegance, confidence, movement redefined for the modern player.
Hedge was founded on the belief that you shouldn’t have to choose between grace and athleticism whether you’re serving on court, strolling the club, or stepping into your everyday life. Rooted in reverence for the traditions of tennis and golf, we also embrace the reality that activewear now lives beyond the court.
We marry the silhouettes and sophistication of dress wear with the flexibility and functionality you need when you lunge, drive, or serve. Because when you feel poised and powerful, your game follows.
Explore the Hedge collection and experience elegance in motion.
{
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/hedge-nyc?${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);
})"
>