Guest User

Untitled

a guest
Mar 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. $("#cat1-cb").change(function(){
  2. if ($("#cat1-cb").is(":checked")) {
  3. $(".category1").show();
  4. }else{
  5. $(".category1").hide();
  6. }
  7. });
  8. $("#cat2-cb").change(function(){
  9. if ($("#cat2-cb").is(":checked")) {
  10. $(".category2").show();
  11. }else{
  12. $(".category2").hide();
  13. }
  14. });
  15. $("#cat3-cb").change(function(){
  16. if ($("#cat3-cb").is(":checked")) {
  17. $(".category3").show();
  18. }else{
  19. $(".category3").hide();
  20. }
  21. });
Add Comment
Please, Sign In to add comment