How to create a search text function for a pop up menu | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to create a search text function for a pop up menu

How to create a search text option with js

27th May 2020, 6:45 PM
Michelle Werme
Michelle Werme - avatar
1 Answer
0
<input type=search oninput="prgSrh(this)"> <p>MBH</p> <p>Friend</p> <p>Somepeople</p> <p>Idk</p> <p>JavaScript</p> <p>ECMAScript</p> <p>Whatever Script</p> <script> function prgSrh(input) { var prgs = document.getElementsByTagName('p'); // elements var arrPrgs = [].slice.call(prgs); // array if(input.value) { // if no input they will be shown arrPrgs.map(function(ele) { // for each element hidden if there is value ele.hidden = true; }); } arrPrgs.filter(function(ele) { return ele.textContent.indexOf(input.value) !== -1; // filter the element which it has some content in it from input value }).map(function(ele) { ele.hidden = false; // they are not hidden }); } </script> <!-- Just oninput filter the textContent of each element and hide the other -->
27th May 2020, 7:11 PM
Basel.Al_hajeri?.MBH()
Basel.Al_hajeri?.MBH() - avatar