Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // Hide pizzas
  2. $('.pizzas').hide();
  3.  
  4. // Handle click
  5. $('#newyork').click(function() {
  6. $(this).next('.pizzas').slideToggle();
  7. });
  8. $('#chicago').click(function() {
  9. $(this).next('.pizzas').slideToggle();
  10. });
  11. $('#sanfran').click(function() {
  12. $(this).next('.pizzas').slideToggle();
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement