UNPKG
equation-admin-template
Version:
latest (1.0.0)
1.0.0
Booststrap 4 admin template made by equation
equation-admin-template
/
ltr
/
assets
/
js
/
components
/
custom-search-multiple.js
9 lines
•
310 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
$(
function
(
) { $(
'#input-search'
).
on
(
'keyup'
,
function
(
) {
var
rex =
new
RegExp
($(
this
).
val
(),
'i'
); $(
'.searchable-container .items'
).
hide
(); $(
'.searchable-container .items'
).
filter
(
function
(
) {
return
rex.
test
($(
this
).
text
()); }).
show
(); }); });