Inphorm NYC
Sustainable performance. Elevated for the modern game.
Founded in 2008, inPhorm set out to prove that high-performance activewear and sustainability can and should go hand in hand. What began with yoga and lifestyle apparel evolved in 2014 into a celebrated line for tennis and golf, combining sharp silhouettes with eco-forward innovation.
Every piece is crafted with responsibility in mind using recycled polyester, water-saving and dry-dye techniques, and solar-powered production. Designed in New York, headquartered in Dallas, and seen on courts from Wimbledon to the U.S. Open, inPhorm has become a global expression of style with purpose.
Explore the inPhorm collection and bring sustainability to every match.
{
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/inphorm-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);
})"
>