No Products in the Cart
• Style: "+ arrTagName[1] +"
" } } /* Display Style Dynamically on Color Swithc - Start */ $('.product_desc_outer .desc_content p').each(function(){ var htmlStyleInfor = $(this).html(); if( htmlStyleInfor.indexOf('• Style:') > 0 || htmlStyleInfor.indexOf('• style:') > 0 ){ $(this).html(styleText); } }) /* Display Style Dynamically on Color Swithc - End */ /* Check Video Thumbnail ICON and update the position */ $('.mux-thumbnail img:nth-child(2)').css("opacity", "-0.6"); thumbnailSize(); $('.zoom-product').each(function(){ var zoomImage = $(this); //console.log(image); var zoomConfig = {zoomType : "inner", cursor: "crosshair"}; var zoomActive = false; // Remove old instance od EZ $('.zoomContainer').remove(); zoomImage.removeData('elevateZoom'); // Update source for images zoomImage.attr('src', $(this).data('image')); zoomImage.data('zoom-image', $(this).data('zoom-product')); // Reinitialize EZ zoomImage.elevateZoom(zoomConfig); }); var ttwindowWidth = window.innerWidth || $window.width(); var $ttPageContent = $('#tt-pageContent'), blocks = { ttCollapseBlock: $('.tt-collapse-block'), ttAirSticky: $ttPageContent.find('.airSticky'), ttInputCounter: $('.tt-input-counter'), ttMobileProductSlider: $('.tt-mobile-product-slider'), } var airStickyObj = blocks.ttAirSticky, tabObj = blocks.ttCollapseBlock.find('.tt-collapse-title'); if(ttwindowWidth >= 1024){ airStickyObj.airStickyBlock({ debug: false, stopBlock: '.airSticky_stop-block', offsetTop: 70, }); } else if(airStickyObj.hasClass('airSticky_absolute')) { airStickyObj.removeClass('airSticky_absolute'); }; $document.on('resize scroll', tabObj, function () { airStickyObj.trigger('render.airStickyBlock'); }); tabObj.on('click', function() { setTimeout(function(){ airStickyObj.trigger('render.airStickyBlock'); }, 170); }); $(".thumbnail-box li img").click(function(){ $(".thumbnail-box li").removeClass("active"); var x = $(this).attr("data-target"); $(this).parent("li").addClass("active"); if($('.product-images-static li img[data-target="' + x + '"]').length > 0){ $('html,body').animate({ scrollTop: $('.product-images-static li img[data-target="' + x + '"]').offset().top - 50 }, 'slow'); } if($('.product-images-static li div[data-target-id="' + x + '"]').length > 0){ $('html,body').animate({ scrollTop: $('.product-images-static li div[data-target-id="' + x + '"]').offset().top - 50 }, 'slow'); } }); if($(window).width() < 576){ $(window).unbind('resize.ttmobpr'); blocks.ttMobileProductSlider.on('init', function(event, slick){ var event = new CustomEvent('mobile-slider-initialized', { 'detail': $(this) }); window.dispatchEvent(event); }); var d = blocks.ttMobileProductSlider.attr('data-slickdots') == 'true' ? true : false; blocks.ttMobileProductSlider.slick({ lazyLoad: 'progressive', dots: d, arrows: false, infinite: true, speed: 300, slidesToShow: 1, slidesToScroll: 1, adaptiveHeight: true }); $('.custom-wishlist-button').attr("data-swaction" , "addToWishlist"); _swat.initializeActionButtons('.mobile-gallery-wrap-wishlist'); } // for Quantity plus minus blocks.ttInputCounter.find('.minus-btn, .plus-btn').click(function( e ) { var $input = $(this).parent().find('input'); var count = parseInt($input.val(), 10) + parseInt(e.currentTarget.className === 'plus-btn' ? 1 : -1, 10); $input.val(count).change(); }); blocks.ttInputCounter.find("input").change(function() { var _ = $(this); var min = 1; var val = parseInt(_.val(), 10); var max = parseInt(_.attr('size'), 10); val = Math.min(val, max); val = Math.max(val, min); _.val(val); }) .on("keypress", function( e ) { if (e.keyCode === 13) { e.preventDefault(); } }); /* check if size cookie is set then change selected size value to cookie value */ var sizeCookie = getSelectedSizeCookie(); if(sizeCookie != '' ){ if( $(".tt-options-swatch.size li").find("[data-value="+sizeCookie + "]").parent('li').attr('data-availability') == 'false' ){ var currIndex = $(".tt-options-swatch.size li").find("[data-value="+sizeCookie + "]").parent('li').index(); var newSizeCookie = ''; var firstAvailableSize = ''; $(".tt-options-swatch.size li").each(function(){ var liIndex = $(this).index(); if(liIndex > currIndex){ if(newSizeCookie == '' && typeof($(this).attr('data-availability')) == 'undefined'){ newSizeCookie = $(this).find('a').attr('data-value'); } } else{ if(firstAvailableSize == '' && typeof($(this).attr('data-availability')) == 'undefined'){ firstAvailableSize = $(this).find('a').attr('data-value'); } } }); if(newSizeCookie != ''){ selectedSizeValue = newSizeCookie; } else{ selectedSizeValue = firstAvailableSize; } } else{ selectedSizeValue = sizeCookie; } } if( selectedSizeValue != ""){ $(".tt-options-swatch.size li").find("[data-value="+selectedSizeValue + "]").click(); } if( additionalInformationOpen ){ $(".product_desc_outer .desc_title:nth-child(3)").addClass("active"); $(".product_desc_outer .desc_content:nth-child(4)").css("display","block"); } setTimeout(function(){ $(".tt-options-swatch.size").closest(".tt-wrapper").find("a[data-target='#modalProductInfo']").remove(); if($(".tt-options-swatch.size").length > 0) { $(".tt-wrapper.product-information-buttons a").clone().appendTo($(".tt-options-swatch.size").closest(".tt-wrapper").find(".tt-title-options")); if($(window).width() > 767) { if($(".tt-options-swatch.size").width() < 200) { $(".tt-title-options a").css({"right": $(".tt-product-single-info").width() - 200}); } else { $(".tt-title-options a").css({"right": $(".tt-product-single-info").width() - $(".tt-options-swatch.size").width() + 10}); } } else { $(".tt-title-options a").css({"right": 0}); } } $(".tt-title-options a").unbind(); $(".tt-options-swatch.size").closest(".tt-wrapper").find("a[data-target='#modalProductInfo']").click(function() { showSizeChart(); }); }, 600); /* For Klarna Payment section refreshment on variant chanegs */ window.KlarnaOnsiteService = window.KlarnaOnsiteService || []; window.Klarna.OnsiteMessaging.refresh(); } function setSelectedSizeCookie(sizeValue){ var d = new Date(); d.setTime(d.getTime() + (7*24*60*60*1000)); var expires = "expires="+ d.toUTCString(); document.cookie = "customer_size_selection=" + sizeValue + ";" + expires + ";path=/"; } function getSelectedSizeCookie() { var name = "customer_size_selection="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i• Size 2 Front Rise: 10", Back Rise: 13 1/4", Inseam: 27 1/2"
• Model is 5’9", Waist: 25", Hips: 35”
• Model is wearing a size 1
Description Our Stretch Poplin Cargo Pant is made in a stretch supima poplin that has a naturally lofty, laundered look. Pant details include jersey waistband with drawcord, slash pockets, cargo side pockets, two back pockets with button closures, and an elastic leg opening. Relaxed fit and garment dyed.These charts are general size guidelines. Sizes refer to body measure and not garment dimensions. Look for further sizing information in the product description area. If you are unsure what size to get or if you are in-between sizes, we recommend you order the larger size.
Sizes | 0 | 1 | 2 | 3 | 4 |
---|---|---|---|---|---|
XS | S | M | L | XL | |
Bust | 31 in 78.7 cm |
33 in 83.8 cm |
35 in 88.9 cm |
37 in 93.9 cm |
39 in 99.1 cm |
True Waist | 23 1⁄2 in 59.7 cm |
25 1⁄2 in 64.8 cm |
27 1⁄2 in 69.9 cm |
29 1⁄2 in 74.9 cm |
31 1⁄2 in 80 cm |
Low Hip | 34 in 86.4 cm |
36 in 91.4 cm |
38 in 96.5 cm |
40 in 101.6 cm |
42 in 106.7 cm |
Across Shoulder | 14 in 35.6 cm |
14 1⁄2 in 36.8 cm |
15 in 38.1 cm |
15 1⁄2 in 39.4 cm |
16 in 40.6 cm |
Arm Length | 23 in 58.4 cm |
23 1⁄2 in 59.7 cm |
24 in 61 cm |
24 1⁄2 in 62.2 cm |
25 in 63.5 cm |
Inseam | 34 in 86.4 cm |
34 in 86.4 cm |
34 in 86.4 cm |
34 in 86.4 cm |
34 in 86.4 cm |
SIZES | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
---|---|---|---|---|---|---|---|---|
True Waist | 23 1⁄2 in 59.7 cm |
24 1⁄2 in 62.2 cm |
25 1⁄2 in 64.8 cm |
26 1⁄2 in 67.3 cm |
27 1⁄2 in 69.9 cm |
28 1⁄2 in 72.4 cm |
29 1⁄2 in 74.9 cm |
30 1⁄2 in 77.5 cm |
Low Hip | 34 in 86.4 cm |
35 in 88.9 cm |
36 in 91.4 cm |
37 in 94 cm |
38 in 96.5 cm |
39 in 99.1 cm |
40 in 101.6 cm |
41 in 104.1 cm |
Measure under arms around the fullest part of the chest. Be sure to keep tape level across back and comfortably loose.
Measure around the narrowest part of your torso. This is usually right below your belly button. Be sure to keep tape level and comfortably loose.
Standing with your heels together measure around the fullest part of your hips. Your lower hip is about 8 inches from your waist.
Measure from your shoulder to the bottom of your wrist. Be sure to keep your arm straight at your side.
Sizes | XS | S | M | L | XL |
---|---|---|---|---|---|
James Perse | 0 | 1 | 2 | 3 | 4 |
UK | 6 | 8 | 10 | 12 | 14 |
US | 2 | 4 | 6 | 8 | 10 |
EU/FR | 34 | 36 | 38 | 40 | 42 |
ITA | 38 | 40 | 42 | 44 | 46 |
Waist | 23 1⁄2 in 59.7cm |
25 1⁄2 in 64.8cm |
27 1⁄2 in 69.9cm |
29 1⁄2 in 74.9cm |
31 1⁄2 in 80.0cm |
Bust | 31 in 78.7cm |
33 in 83.8cm |
35 in 88.9 cm |
37 in 94.0 cm |
39 in 99.1 cm |