-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutSHEIN.js
45 lines (37 loc) · 1.33 KB
/
aboutSHEIN.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// user tab
document.getElementById("user").addEventListener("click", signInAndSignup);
function signInAndSignup() {
window.location.href = "signInAndSignup.html";
}
// home tab
document.getElementById("home").addEventListener("click", function () {
window.location.href = "index.html";
});
// kids tab
document.getElementById("kids").addEventListener("click", function () {
window.location.href = "kids.html";
});
// logo
document.getElementById("logo").addEventListener("click", function () {
window.location.href = "index.html";
});
// men tab
document.getElementById("men").addEventListener("click", function () {
window.location.href = "men.html";
});
// curve+plus tab
document.getElementById("curve+plus").addEventListener("click", function () {
window.location.href = "curve+plus.html";
});
// beauty tab
document.getElementById("beauty").addEventListener("click", function () {
window.location.href = "beauty.html";
});
var cartData = JSON.parse(localStorage.getItem("cartData"));
var favProductsData = JSON.parse(localStorage.getItem("favProductsData"));
// no. of cart items show when page is loading
// no. of fav cart items show when page is loading
window.onload = function () {
document.getElementById("bagItemsCount").textContent = cartData.length;
document.getElementById("favItemsCount").textContent = favProductsData.length;
};