Statistics
0 0 0 1 1 7 1 3 7 9
Today: 23
Yesterday: 262
Week: 23
Month: 2575
Year: 136855
All: 1171379
Online 2
ĐỒ NGHỀ TASCO
- Thương hiệu Nhật Bản, sản xuất ở Đài Loan, Mỹ ...
- Hàng chính hãng, bảo hành 12 tháng
Hiển thị:
15
25
50
75
100
Sắp xếp:
Mặc định
Tên (A - Z)
Tên (Z - A)
Giá (Thấp > Cao)
Giá (Cao > Thấp)
Đánh giá (Cao nhất)
Đánh giá (Thấp nhất)
Kiểu (A - Z)
Kiểu (Z - A)
';
html += '
' + $(element).find('.cart').html() + '
';
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('
Hiển thị: Danh sách
/ Lưới ');
$.cookie('display', 'list');
} else {
$('.product-list').attr('class', 'product-grid');
$('.product-grid > div').each(function(index, element) {
html = '';
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('
Hiển thị: Danh sách / Lưới');
$.cookie('display', 'grid');
}
}
view = $.cookie('display');
if (view) {
display(view);
} else {
display('grid');
}
//-->