Guest User

Untitled

a guest
Jul 25th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.46 KB | None | 0 0
  1. $('.btn').click(function() {
  2.  
  3.   $('.text').html('loading...');
  4.  
  5.   $.ajax({
  6.     type: 'GET',
  7.     url: 'http://www.reddit.com/r/aww/search.json?q=puppy&restrict_sr=true',
  8.     success: function(data) {
  9.       $('.text').html('');
  10.       puppyObjects = data.data.children;
  11.       for (var i = 0; i < puppyObjects.length; i++) {
  12.         var img = '<img src="' + puppyObjects[i].data.thumbnail + '" />';
  13.         $('.text').append(img);
  14.       }
  15.     },
  16.   });
  17. });
Add Comment
Please, Sign In to add comment