skip to Main Content

jQuery search and filter using keywords – Photoshop

I'm trying to program a search/filter function that searches through unordered list items with data-* attributes based on what the user types in. <input type="text" placeholder="Search..." id="myInput" onkeyup="myFunction()"> <ul id="myUL"> <li><a href="#" data-keywords="photography">Digital Media Design</a></li> <li><a href="#" data-keywords="computers">Information Technology</a></li> <li><a…

VIEW QUESTION
Back To Top
Search