Guest User

Untitled

a guest
Nov 19th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. $('.mixingroom-impatient a').live('click', function(){
  2. var listItems = getAllRecipes();
  3. console.log(listItems);
  4. });
  5.  
  6. function getAllRecipes() {
  7. var listItems;
  8. $.getJSON('/allrecipes', function(data){
  9.  
  10. var recipes = [];
  11.  
  12. $.each(data, function(i, item){
  13. var recipeTitle = item.recipe.title;
  14. var recipeThumb = item.recipe.image_file_name;
  15. var recipeID = item.recipe.id;
  16. recipes.push('<li><a href="#' + recipeID + '" style="background-image:url(/system/images/' + recipeID + '/thumb/' + recipeThumb + ');">' + recipeTitle + '</a></li>');
  17. });
  18.  
  19. listItems = recipes.join('');
  20. });
  21.  
  22. return listItems;
  23. }
Add Comment
Please, Sign In to add comment