Skip to content
Balo BL TN02 – Xanh Navy
Được xếp hạng 0.0 5 sao
Đã bán 96
- Kích thước: 42x30x15
Chất liệu: Dù 90PVC
Khóa kéo: Sắt
Màu sắc: Xanh navy
- Số lượng đặt hàng tối thiểu: 50
window.addEventListener('beforeunload', () => {
sessionStorage.setItem('scrollPosition', window.scrollY);
});
window.addEventListener('load', () => {
const scrollPosition = sessionStorage.getItem('scrollPosition');
if (scrollPosition !== null) {
window.scrollTo(0, parseInt(scrollPosition, 10));
}
});