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 trialjlampstack
23,932 PointsMy 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
23,618 PointsAwesome alternative. Looks way cooler
Steven Parker
231,236 PointsThey always did "update dynamically in real time".
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.
jlampstack
23,932 PointsTrue lol... excellent point!
Michael Caley
5,376 PointsYeah this isn't good, you're going to be making a call to flickr every time you release a key.
Kenneth Kim
3,795 PointsCool :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 :)
jlampstack
23,932 Pointsjlampstack
23,932 PointsI agree, love the effect... but Steven Parker did made some good points which should be taken into consideration before using.