Description
Introducing the Juliette skirt, a seamless blend of versatility and vintage charm. Featuring a voluminous maxi skirt with ruched detail and delicately piped lace. Juliette is a fashion-forward essential, her drawstring waist allows you to wear her as a skirt, or make a flattering flowing dress with a sweeping low back. For a striking coordinating set, style the maxi with our Juliette halter top. Elegantly sheer in finish, she’s a stylish must-have that will leave a lasting impression.
Details
Designed & made in Australia
Poly Georgette
Black
Maxi length
Satin bias ties
Ability to style as a skirt or dress
Make it a set with the '
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"888926",
"cartNum":qty,
"new":0
};
if(key){
data.uniqueId = skus[key].unique;
}
if(unique){
data.uniqueId = unique;
}
$.ajax({
url:"?m=jqajax&act=addtocart",
method:"POST",
dataType:"JSON",
data:data,
success :function(e){
layer.closeAll();
console.log(e.error);
if(e.error == 0){
$(".right-mini-cart-box").html(e.html);
$(".CartCount").html(e.data.count);
$('.drawer-toggle-cart').trigger("click");
}else{
layer.msg(e.msg);
}
}
});
}
function addto_sku(qty,skus,key){
$.ajax({
url:"?m=jqajax&act=addto_sku",
method:"POST",
dataType:"JSON",
data: {
id:'888926',
sku: key,
},
success :function(e){
if (e.unique){
let unique = e.unique.replace(/'/g, '');
addtocart(qty,"","",unique);
}
}
});
}
$(".cart-wishlist").click(function(){
$.ajax({
url: "?m=jqajax&act=addwish",
method: "POST",
dataType: "JSON",
data: {
id:'888926'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});