-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductBeautyDetails.js
90 lines (75 loc) · 2.57 KB
/
productBeautyDetails.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
var productObj = JSON.parse(localStorage.getItem("seleBeautyProd"));
displayImgs();
displayDetails();
function displayImgs() {
var bImg = document.createElement("img");
bImg.setAttribute("src", productObj.imgUrl);
document.getElementById("img1").append(bImg);
}
function displayDetails() {
document.querySelector("h4").textContent = productObj.title;
document.querySelector("h1").textContent = `US$${productObj.price}`;
document.getElementById("type").innerHTML = `<h3>${productObj.type}</h3>`;
}
var cartData = JSON.parse(localStorage.getItem("cartData")) || [];
document.querySelector("button").addEventListener("click", function () {
var exist = false;
for (var j = 0; j < cartData.length; j++) {
if (productObj.title == cartData[j].title) {
exist = true;
break;
}
}
if (exist) {
alert("product is already added to cart");
} else {
alert("Item is added successfully");
cartData.push(productObj);
localStorage.setItem("cartData", JSON.stringify(cartData));
document.getElementById("bagItemsCount").textContent = cartData.length;
}
});
// 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";
});
// cart icon
document.getElementById("bags").addEventListener("click", function () {
window.location.href = "cart.html";
});
// fav icon
document.getElementById("favs").addEventListener("click", function () {
window.location.href = "fav.html";
});
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;
};