eternalmeg

04

May 25th, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function search() {
  2. let towns = Array.from(document.querySelectorAll('#towns li'));
  3. let searchText = document.getElementById('searchText').value.toLowerCase();
  4. let counter = 0;
  5.  
  6. towns.forEach(town => {
  7. if (town.textContent.toLowerCase().includes(searchText)) {
  8. town.style.fontWeight = 'bold';
  9. town.style.textDecoration = 'underline';
  10. return counter++
  11. }
  12. town.style.fontWeight = "";
  13. town.style.textDecoration = "none";
  14. })
  15. document.getElementById('result').textContent = `${counter} matches found`
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment