Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <div class="menu-container">
  2. <div class="left">
  3. <?php if (have_rows('menu_items')):
  4. while (have_rows('menu_items')): the_row(); ?>
  5. <a href="#/"><div id="<?php the_sub_field('menu_id'); ?>" class="menu-item"><?php the_sub_field('menu_item'); ?></div></a>
  6.  
  7. <?php endwhile;
  8. endif; ?>
  9. </div>
  10. <div class="food-container">
  11. <?php if (have_rows('food_items')):
  12. while (have_rows('food_items')): the_row(); ?>
  13. <div id ="<?php the_sub_field('food_id'); ?>">
  14. <div class="food-item-container">
  15. <div class="food"> <h3><?php the_sub_field('food_name'); ?></h3>
  16. <?php the_sub_field('food_description'); ?>
  17. </div><div class="price"><?php the_sub_field('price'); ?></div>
  18. </div>
  19. <div class="clear"></div>
  20. <?php endwhile;
  21. endif; ?>
  22. </div>
  23.  
  24. <script>
  25. $(document).ready(
  26. function() {
  27. $("#menu-item1").click(function() {
  28. $("#food_id1_1, #food_id1_2, #food_id1_3, #food_id1_4, #food_id1_5, #food_id1_6").fadeToggle();
  29.  
  30. });
  31. $("#menu-item2").click(function() {
  32. $("#food_id2_1, #food_id2_2, #food_id2_3, #food_id2_4, #food_id2_5, #food_id2_6").fadeToggle();
  33.  
  34. });
  35. });
  36. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement