Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. $(".ShoppingList_Item").each(function(index){
  3.    var itemCode = $(this).find(".ShoppingList_ItemCode").html();
  4.    $.get("/shoppinglistitemnotes.ashx", {itemCode: ""+itemCode+""}, function(data) {
  5.       // I dont want (this), i want the .ShoppingList_Item
  6.       $(this).find(".ShoppingList_Description").append("<br/>" + data);
  7.     })
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement