forked from krajeet35/Project--miscreant-punishment-3547
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwishlist.html
33 lines (27 loc) · 833 Bytes
/
wishlist.html
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
</div>
<div id="wishlist">
</div>
<script src="./wishlist.js"></script>
</body>
</html>
<!--
local storage code in this formate: let products=JSON.parse(localStorage.getItem("items")) || []
this section should be added in append function
for each data section where
we are taking data from data base
btn.setAttribute("class","add")
btn.innerText="wishlist"
btn.addEventListener('click',function(){
products.push(el)
localStorage.setItem("items", JSON.stringify(products))
})
-->