


1/3
Blue 3/4 Sleeve Striped Maxi Dress
Style# 1489708
Regular price
$59.99
Sale price
$83.99
 {
var currentOptions = _.map(
$('.single-option-selector__radio'),
function(element) {
var $element = $(element);
var type = $element.attr('type');
var currentOption = {};
if (type === 'radio' || type === 'checkbox') {
if ($element[0].checked) {
currentOption.value = $element.val();
currentOption.index = $element.data('index');
return currentOption;
} else {
return false;
}
} else {
currentOption.value = $element.val();
currentOption.index = $element.data('index');
return currentOption;
}
}
);
// remove any unchecked input values if using radio buttons or checkboxes
currentOptions = _.compact(currentOptions);
return currentOptions;
}
/**
* Find variant based on selected values.
*
* @param {array} selectedValues - Values of variant inputs
* @return {object || undefined} found - Variant object from product.variants
*/
function _getVariantFromOptions() {
var selectedValues = _getCurrentOptions();
var product_object = JSON.parse(
document.getElementById('ProductJson-product-template').innerHTML
);
var variants = product_object.variants;
var found = _.find(variants, function(variant) {
return selectedValues.every(function(values) {
return _.isEqual(variant[values.index], values.value);
});
});
return found;
}
function contains(a, obj) {
for (var i = 0; i < a.length; i++) {
if (a[i] === obj) {
return true;
}
}
return false;
}
$(document).ready(function(){
var product_object = JSON.parse(
document.getElementById('ProductJson-product-template').innerHTML
);
var color_first = false;
if(product_object.options.length > 1 && product_object.options[1] == 'Size'){
color_first = true;
}
$last_checked = '';
$()
This blue maxi dress features elegant 3/4 sleeves and a timeless striped pattern, offering both comfort and style. Its flowing silhouette provides ease of movement, making it ideal for various occasions, from casual outings to more formal events. Crafted to balance classic design with modern wearability, this dress is a versatile addition to any wardrobe.
Description:
- Neckline: V-neck
- Sleeve Length: 3/4 Sleeve
- Pattern Type: Striped
- Dress Length: Maxi
- Silhouette: A-line
- Material: 45% Elastane, 55% Rayon
- Machine Washable
Size Chart:
Size | Bust | Length | Sleeves | |||
---|---|---|---|---|---|---|
inch | cm | inch | cm | inch | cm | |
S | 36 | 92 | 53 | 135 | 18 | 45 |
M | 38 | 96 | 54 | 138 | 18 | 46 |
L | 40 | 101 | 55 | 141 | 19 | 47 |
XL | 42 | 107 | 56 | 144 | 19 | 48 |
XXL | 45 | 115 | 58 | 147 | 19 | 49 |