Guest User

Untitled

a guest
Jul 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var pFilters = [];
  2. function togglePotatoes(pType) {
  3. if (pFilters.indexOf(pType) > -1) {
  4. pFilters.splice(pFilters.indexOf(pType),1);
  5. } else {
  6. pFilters.push(pType);
  7. }
  8. console.log(pFilters.join(","));
  9.  
  10. $(pFilters.join(",")).hide('fast');
  11. $("#potatoes li").not($(pFilters.join(","))).show('fast');
  12.  
  13. }
Add Comment
Please, Sign In to add comment