Guest User

Untitled

a guest
Dec 17th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. function myFunction() {
  2. var input = document.getElementById("Search");
  3. var filter = input.value.toLowerCase();
  4. var nodes = document.getElementsByClassName('connect-cat');
  5.  
  6.  
  7. for (i = 0; i < nodes.length; i++) {
  8.  
  9. if (nodes[i].innerHTML.toLowerCase().includes(filter)) {
  10. nodes[i].style.display = "block";
  11. } else {
  12. nodes[i].style.display = "none";
  13. }
  14. }
  15. }
  16.  
  17. function experienceMore() {
  18. document.getElementById("Search").value = "Experience more campaign";
  19. }
  20.  
  21. function firstChoice() {
  22. document.getElementById("Search").value = "First choice";
  23. }
  24.  
  25. <input type="text" id="Search" onKeyup="myFunction()" Placeholder="Please enter a search term...">
Add Comment
Please, Sign In to add comment