-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
40 lines (34 loc) · 1.4 KB
/
app.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
const search = () => {
const searchbox = document.getElementById("search-item").value.toUpperCase();
const storeitems = document.getElementById("product-list")
const product = document.querySelectorAll(".product")
const pname = storeitems.getElementsByTagName("h2")
for (var i = 0; i < pname.length; i++) {
let match = product[i].getElementsByTagName('h2')[0];
if (match) {
let textvalue = match.textContent || match.innerHTML
if (textvalue.toUpperCase().indexOf(searchbox) > -1) {
product[i].style.display = "";
} else {
product[i].style.display = "none";
}
}
}
}
const searchOne = () => {
const searchbox = document.getElementById("search-cat").value.toUpperCase();
const storeitems = document.getElementById("product-list")
const product = document.querySelectorAll(".product")
const pname = storeitems.getElementsByTagName("h3")
for (var i = 0; i < pname.length; i++) {
let match = product[i].getElementsByTagName('h3')[0];
if (match) {
let textvalue = match.textContent || match.innerHTML
if (textvalue.toUpperCase().indexOf(searchbox) > -1) {
product[i].style.display = "";
} else {
product[i].style.display = "none";
}
}
}
}