Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $.get('http://...', function (data) {
  2. $(data).find("entry").each(function () {
  3. var el = $(this);
  4. console.log("------------------------");
  5. console.log("title : " + el.find("title").text());
  6. console.log("author : " + el.find("author").text());
  7. console.log("description: " + el.find("description").text());
  8. });});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement