In my json response, I want to loop through it using $.each and then append items to a element.
$.each(data, function(
$.each(data, function(i, item) { var li = $(""); $("#yourul").append(li); $("a",li).text(item.Username); $("a",li).attr("href", "http://example.com" + item.UserID); }