$.search is a jQuery plugin that lets you hide or show matching elements as the user types in a search box.
In this article, you will learn how to:
Live Demo: Here’s what you will end up building:
git clone https://github.com/tejesh95/g1-search.git $('body').search()
<!DOCTYPE html>
<html>
<head>
<title>g1 search</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/combine/npm/jquery,npm/g1"></script>
<script>
$('body').search()
</script>
</body>
</html> Create a class called d-none in <style> section inside <head> tag
<!DOCTYPE html>
<html>
<head>
<title>g1 search</title>
<style>
.d-none {
display: none;
}
</style>
</head> data-hide-class="d-none" attribute to add the d-none class to all non-matching target elements.
To summarise: On <input type="search"> tag,
data-target attribute is to identify target elements. data-search attribute is to identify text content inside the target elements.data-hide-class attribute adds the class to all non-matching target elements.The final code looks like:
<!DOCTYPE html>
<html>
<head>
<title>g1 search</title>
<style>
.d-none {
display: none;
}
</style>
</head>
<body>
<input type="search" data-search="@text" data-target=".list-item" data-hide-class="d-none">
<ul>
<li class="list-item">First item text content</li>
<li class="list-item">Second item text content</li>
<li class="list-item">Third item text content</li>
</ul>
<script src="https://cdn.jsdelivr.net/combine/npm/jquery,npm/g1"></script>
<script>
$('body').search()
</script>
</body>
</html> A look into another example:
To hide elements that do not match url link attribute
To find matches based on href attribute url links, give data-search=”href”.
To read full documentation of $.search, head to https://learn.gramener.com/guide/g1/search
In part 2 of the article, we will explore how to enable search transformations on input text to do fuzzy/synonym searches.
La dernière sensation de BGaming, AviaMasters, plonge les joueurs dans une action en haute altitude… Read More
1. A Quick‑Start Guide to MaxiSpinMaxiSpin Casino has taken the online gaming scene by storm… Read More
1. The Pulse of Speed‑First GamingIn a world where attention spans shrink faster than a… Read More
1. La Pulsación del Juego RápidoBetPlay casino ha creado un nicho para los jugadores que… Read More
1. The Pulse of a Rapid Gaming SessionQuando accedi a Verde Casino, la prima cosa… Read More
Ciò che rende Aviator Slot un'Esperienza da BatticuoreAviator Slot ha creato una nicchia per i… Read More
This website uses cookies.
Leave a Comment