✦ Verified product
Milano Pullover
AUD 159.00
Size
Townsman
Verified independent store
→
Denim long-sleeve pullover shirt Fabric & Care Material: Midweight cotton blend Composition: 88% Cotton, 12% Modal Care instructions: Machine wash cold Style & Features 3/4 placket
design Tailored fit Classic collar Split yoke Straight hem with side split Double-pleated back Size Chart Shirt Measurements CM IN S M L XL XXL Collar 38.5 39.7 40.9 42.1 43.3 Shoulder Width 45 46.5 48 49.5 51 Chest Width 50 52 54 56 58 Back Length 68 69.5 71 72.5 74 Sleeve Length 56.5 57.8 59.1 60.4 61.7 .toggle-button { display: inline-block; padding: 8px 12px; border: 1px solid #000; background-color: #fff; cursor: pointer; font-size: 14px; margin-right: 5px; margin-bottom: 10px; } .toggle-button.active { background-color: #000; color: #fff; } #size-chart td { white-space: nowrap; text-align: center; min-width: 50px; } const cmBtnDenim = document.getElementById("toggle-cm-denim"); const inBtnDenim = document.getElementById("toggle-in-denim"); function convertToInches(cm) { return (cm / 2.54).toFixed(1); } function setToCM() { document.querySelectorAll("#size-chart-denim td[data-cm]").forEach(cell => { cell.textContent = cell.getAttribute("data-cm"); }); cmBtnDenim.classList.add("active"); inBtnDenim.classList.remove("active"); } function setToIN() { document.querySelectorAll("#size-chart-denim td[data-cm]").forEach(cell => { const cm = parseFloat(cell.getAttribute("data-cm")); cell.textContent = convertToInches(cm); }); inBtnDenim.classList.add("active"); cmBtnDenim.classList.remove("active"); } if (cmBtnDenim && inBtnDenim) { cmBtnDenim.addEventListener("click", setToCM); inBtnDenim.addEventListener("click", setToIN); setToCM(); // Default to CM view }