- Runs true to size
- Designed to be slightly fitted, so take your normal size
- Pencil skirt silhouette with center front seam detail
- Hits slightly below the knee
- Hidden waistband with invisible side zipper
- Center front length 24”
- 50% Polyester/50% Polyurethane
- Imported
- No side vents
- Model is 5'9' and is wearing a size Small
Our elegant River Pencil Skirt is made from Italian Vegan Leather. In a modern, yet sophisticated silhouette that falls slightly below the knee, it features a subtle seam detail down the center-front, and a discreet side zipper. This faux-leather skirt will be sure to elevate any effortlessly chic look.
'
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"1144332",
"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:'1144332',
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:'1144332'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});