Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function search() {
- let towns = Array.from(document.querySelectorAll('#towns li'));
- let searchText = document.getElementById('searchText').value.toLowerCase();
- let counter = 0;
- towns.forEach(town => {
- if (town.textContent.toLowerCase().includes(searchText)) {
- town.style.fontWeight = 'bold';
- town.style.textDecoration = 'underline';
- return counter++
- }
- town.style.fontWeight = "";
- town.style.textDecoration = "none";
- })
- document.getElementById('result').textContent = `${counter} matches found`
- }
Advertisement
Add Comment
Please, Sign In to add comment