-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
86 lines (73 loc) · 2.64 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<h4>jQuery Filter by category and search</h1>
<br>
<hr>
<div class="row">
<div class="col-md-4">
<input type="text" id="search" class="form-control" placeholder="Search product by name or sku">
</div>
<div class="col-md-8">
<div class="btn-group" role="group" aria-label="Basic example">
<button type="button" id="all" class="btn btn-success">All</button>
<button type="button" id="drink" class="btn btn-success">Drink</button>
<button type="button" id="food" class="btn btn-success">Food</button>
<button type="button" id="c" class="btn btn-success">C</button>
</div>
</div>
</div>
<hr>
<div class="row" id="parent">
<div class="col-md-2 box drink">
<center>
<img src="http://via.placeholder.com/80x80" class="" alt="">
<p class="name">Pepsi </p>
<p class="sku">D-1251</p>
<p>$ 2,410</p>
</center>
</div>
<div class="col-md-2 box drink">
<center>
<img src="http://via.placeholder.com/80x80" class="" alt="">
<p class="name">Cocacola </p>
<p class="sku">D-1314</p>
<p>$ 2,410</p>
</center>
</div>
<div class="col-md-2 box drink">
<center>
<img src="http://via.placeholder.com/80x80" class="" alt="">
<p class="name">Mountien Dwe </p>
<p class="sku">D-458</p>
<p>$ 2,410</p>
</center>
</div>
<div class="col-md-2 box food">
<center>
<img src="http://via.placeholder.com/80x80" class="" alt="">
<p class="name">Burger </p>
<p class="sku">F-125</p>
<p>$ 2,410</p>
</center>
</div>
<div class="col-md-2 box food">
<center>
<img src="http://via.placeholder.com/80x80" class="" alt="">
<p class="name">Hot Dog </p>
<p class="sku">F-7412</p>
<p>$ 2,410</p>
</center>
</div>
</div>
<script src="jquery-3.2.1.min.js"></script>
<script src="filter.js"></script>
</body>
</html>