Advertisement
Guest User

Untitled

a guest
May 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(".wszystkie")click(function (){
  2.  
  3.     $(".pizza").show();
  4. });
  5.  
  6. $(".mieso")click(function (){
  7.  
  8.     $(".pizza").hide();
  9.     $(".zMiesem").show();
  10.  
  11. });
  12.  
  13. $(".ananas")click(function (){
  14.  
  15.     $(".pizza").hide();
  16.     $(".zAnanasem").show();
  17.  
  18. });
  19.  
  20. $(".grzyby")click(function (){
  21.  
  22.     $(".pizza").hide();
  23.     $(".zGrzybami").show();
  24.  
  25. });
  26. $(".owocyMorza")click(function (){
  27.  
  28.     $(".pizza").hide();
  29.     $(".zOwocMorza").show();
  30.  
  31. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement