Advertisement
Guest User

directory clear filters

a guest
Apr 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function clearFilters()
  2. {
  3.     var chkBoxes = document.getElementsByClassName("fa-check-square");
  4.     console.log(chkBoxes)
  5.     console.log(chkBoxes.length + " checked boxes to uncheck")
  6.     for(var i = 0; i<chkBoxes.length; i=i+1)
  7.     {
  8.         console.log(chkBoxes[i].click());
  9.         console.log("Clearing checkbox " + i)
  10.     }
  11.     if(chkBoxes.length > 0)
  12.         clearFilters()
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement