script.js 434 B

12345678910111213
  1. $('#requete-randomuser').click(function() {
  2. $.get('https://api.randomuser.me', function(data) {
  3. var user = data.results[0];
  4. var name = user.name;
  5. var loc = user.location;
  6. $('#user-name').html(name.first +
  7. ' ' + name.last);
  8. $('#email').html(user.email);
  9. $('#adresse').html(loc.city + ', ' +
  10. loc.postcode + ' ' + loc.state);
  11. $('#picture').prop('src', user.picture.large);
  12. });
  13. });