Product Name: Khaki Suede Korean-Style Short Jacket
This stylish khaki suede jacket is designed in a Korean-style, offering a chic and sophisticated look. Its short cut and quality material make it a perfect addition to any wardrobe, adding elegance and comfort to your outfit.
Size Chart
Size
Length (cm)
Bust (cm)
Width (cm)
Sleeve (cm)
S
52
86
40
63
M
53
90
41
64
L
54
94
42
65
Size
Length (in)
Bust (in)
Width (in)
Sleeve (in)
S
20.47
33.86
15.75
24.80
M
20.87
35.43
16.14
25.20
L
21.26
37.01
16.54
25.59
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.