YARDLEY
Sort By:
Show:
Yardley English Lavender Refreshing Body Spray 150ml
Since 1770, Yardley English Lavender has been made with only the purest natural lavend...
Rs.190
Yardley Gold Deodorizing Talc 250gm
Use this Gold talcum powder liberally on your body round the year for a fresh invigorating feeli...
Rs.120
';
html += '
' + $(element).find('.wishlist').html() + '
';
html += '
' + $(element).find('.compare').html() + '
';
html += '
';
html += '
';
var image = $(element).find('.image').html();
if (image != null) {
html += '
' + image + '
';
}
var price = $(element).find('.price').html();
if (price != null) {
html += '
' + price + '
';
}
html += '
' + $(element).find('.name').html() + '
';
html += '
' + $(element).find('.description').html() + '
';
var rating = $(element).find('.rating').html();
if (rating != null) {
html += '
' + rating + '
';
}
html += '
';
$(element).html(html);
});
$('.display').html('
Display:ListGrid');
$.cookie('display', 'list');
} else {
$('.product-list').attr('class', 'product-grid');
$('.product-grid div.product_block').each(function(index, element) {
html = '';
var image = $(element).find('.image').html();
if (image != null) {
html += '
' + image + '
';
}
html += '
' + $(element).find('.name').html() + '
';
html += '
' + $(element).find('.description').html() + '
';
var price = $(element).find('.price').html();
if (price != null) {
html += '
' + price + '
';
}
var rating = $(element).find('.rating').html();
if (rating != null) {
html += '
' + rating + '
';
}
html += '
' + $(element).find('.cart').html() + '
';
html += '
' + $(element).find('.wishlist').html() + '
';
html += '
' + $(element).find('.compare').html() + '
';
$(element).html(html);
});
$('.display').html('
Display:ListGrid');
$.cookie('display', 'grid');
}
}
view = $.cookie('display');
if (view) {
display(view);
} else {
display('grid');
}
//-->