Advertisement
leors

Read JSON with jQuery (json file)

May 31st, 2015
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.15 KB | None | 0 0
  1. {"users":[
  2.         {
  3.             "firstName":"Bianca",
  4.             "lastName":"Pereira Pinto",
  5.             "joined": {
  6.                 "month":"Setembro",
  7.                 "day":25,
  8.                 "year":1989
  9.             }
  10.         },
  11.         {
  12.             "firstName":"Beatrice",
  13.             "lastName":"Almeida Alves",
  14.             "joined": {
  15.                 "month":"Abril",
  16.                 "day":18,
  17.                 "year":1983
  18.             }
  19.         },
  20.         {
  21.             "firstName":"Fábio",
  22.             "lastName":"Oliveira Santos",
  23.             "joined": {
  24.                 "month":"Março",
  25.                 "day":7,
  26.                 "year":1981
  27.             }
  28.         },
  29.         {
  30.             "firstName":"Miguel",
  31.             "lastName":"Barros Santos",
  32.             "joined": {
  33.                 "month":"Outubro",
  34.                 "day":11,
  35.                 "year":1976
  36.             }
  37.         },
  38.         {
  39.             "firstName":"Rafaela",
  40.             "lastName":"Pereira Ribeiro",
  41.             "joined": {
  42.                 "month":"Fevereiro",
  43.                 "day":1,
  44.                 "year":1993
  45.             }
  46.         }
  47. ]}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement