Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AJAX Basics (retiring) AJAX and APIs Stage 4 Challenge Answer

My Alternative Real Time Solution without Submit Button

Just by changing the event from .submit() to .keyup() we can make the photos update dynamically in real time. I suppose you wouldn't need the submit button anymore, or you could even change it to a reset button instead.

$(document).ready(function() {


 $('#search').keyup(function (e) {
    e.preventDefault();
    // the AJAX part
    var flickerAPI = "http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?";
    var searchField = $(this).val();
    var flickrOptions = {
      tags: searchField,
      format: "json"
    };
    function displayPhotos(data) {
      var photoHTML = '<ul>';
      $.each(data.items,function(i,photo) {
        photoHTML += '<li class="grid-25 tablet-grid-50">';
        photoHTML += '<a href="' + photo.link + '" class="image">';
        photoHTML += '<img src="' + photo.media.m + '"></a></li>';
      }); // end each
      photoHTML += '</ul>';
      $('#photos').html(photoHTML);
    }
    $.getJSON(flickerAPI, flickrOptions, displayPhotos);

  }); // end click

}); // end ready

4 Answers

Brett Hutt
Brett Hutt
21,848 Points

Awesome alternative. Looks way cooler

I agree, love the effect... but Steven Parker did made some good points which should be taken into consideration before using.

Steven Parker
Steven Parker
229,644 Points

They always did "update dynamically in real time". :wink:

But now you made it happen on each keystroke instead of waiting for the submit. Cute idea — kind of like the auto-search on Google!

The only downside is that unlike Google, the data is coming from another party and this will significantly increase the traffic to and from. So you might not want to do this on a heavily-used public page.

True lol... excellent point!

Michael Caley
Michael Caley
5,376 Points

Yeah this isn't good, you're going to be making a call to flickr every time you release a key.

Kenneth Kim
Kenneth Kim
3,795 Points

Cool :D But just like what Steven said, we should consider the current situation or the amount of resources that we have. Anyway this is really a cool thing to know before ending this part :)