Size Chart (inches)
Size |
LENGTH (inches) |
WIDTH (inches) |
S |
27 |
20 |
M |
28 |
22 |
L |
29 |
24 |
XL |
30 |
26 |
2XL |
31 |
28 |
3XL |
32 |
30 |
4XL |
33 |
32 |
5XL |
34 |
34 |
Size Chart (cm)
Size |
LENGTH (cm) |
WIDTH (cm) |
S |
68.6 |
50.8 |
M |
71.1 |
55.9 |
L |
73.7 |
61 |
XL |
76.2 |
66 |
2XL |
78.7 |
71.1 |
3XL |
81.3 |
76.2 |
4XL |
83.8 |
81.3 |
5XL |
86.4 |
86.4 |
Use left/right arrows to navigate the slideshow or swipe left/right if using a mobile device
$(document).ready(function() {
// Handle switching between tabs in the slide-out menu
$('.slm-tab-title li a').on('click', function(e) {
e.preventDefault();
// Remove the 'active' class from all tabs and contents
$('.slm-tab-title li a').removeClass('active');
$('.slm-tab-content .tab-content').removeClass('active');
// Add the 'active' class to the clicked tab and corresponding content
$(this).addClass('active');
var tabId = $(this).attr('href');
$(tabId).addClass('active');
});
});