Guest User

Untitled

a guest
Mar 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // filter Tasks
  2. function filterTasks(e) {
  3. const text = e.target.value.toLowerCase();
  4. document.querySelectorAll('.collection-item').forEach(function(task) {
  5. const item = task.firstChild.textContent;
  6.  
  7. if (item.toLowerCase().indexOf(text) != -1) {
  8. task.style.display = 'block';
  9. } else {
  10. task.style.display = 'none';
  11. }
  12.  
  13. });
  14. }
Add Comment
Please, Sign In to add comment