Product Name: Black Button Sweater Inner Fitted Top
This black button sweater inner top is a perfect base layer for any outfit. Its fitted design and chic button details offer both comfort and style, making it an ideal choice for layering or wearing alone.
Size Chart
Size
Length (cm)
Bust (cm)
Width (cm)
Sleeve (cm)
S
46
35.5
31
59
M
48
37
32
60
L
50
38.5
33
61
Size
Length (in)
Bust (in)
Width (in)
Sleeve (in)
S
18.11
13.98
12.20
23.23
M
18.90
14.57
12.60
23.62
L
19.69
15.16
12.99
24.02
Model Info
Model Height (cm)
Weight (kg)
Bust/Waist/Hips (cm)
Size
171
47.5
75/59/85
M
Model Height (ft/in)
Weight (lbs)
Bust/Waist/Hips (in)
Size
5'7"
104.72
29.53/23.23/33.46
M
document.getElementById('size-cm-btn').addEventListener('click', function () {
showSize('cm');
});
document.getElementById('size-inch-btn').addEventListener('click', function () {
showSize('inch');
});
function toggleDetail(id) {
var element = document.getElementById(id);
var arrow = element.previousElementSibling.querySelector('.arrow');
if (element.style.display === 'block') {
element.style.display = 'none';
arrow.textContent = '+';
} else {
element.style.display = 'block';
arrow.textContent = '—';
}
}
function showSize(sizeType) {
var cmTable = document.getElementById('size-chart-cm');
var inchTable = document.getElementById('size-chart-inch');
var modelCmTable = document.getElementById('model-info-cm');
var modelInchTable = document.getElementById('model-info-inch');
var buttons = document.getElementsByClassName('toggle-button');
if (sizeType === 'cm') {
cmTable.style.display = 'block';
inchTable.style.display = 'none';
modelCmTable.style.display = 'block';
modelInchTable.style.display = 'none';
buttons[0].classList.add('active');
buttons[1].classList.remove('active');
} else if (sizeType === 'inch') {
cmTable.style.display = 'none';
inchTable.style.display = 'block';
modelCmTable.style.display = 'none';
modelInchTable.style.display = 'block';
buttons[0].classList.remove('active');
buttons[1].classList.add('active');
}
}
Choosing a selection results in a full page refresh.