<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Search Nuggets &#187; Flickr</title>
	<atom:link href="http://blog.comperiosearch.com/blog/tag/flickr/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.comperiosearch.com</link>
	<description>A blog about Search as THE solution</description>
	<lastBuildDate>Mon, 13 Jun 2016 08:59:45 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.40</generator>
	<item>
		<title>Super Fast Image Search with JSON, JQuery and Flickr</title>
		<link>http://blog.comperiosearch.com/blog/2012/03/14/super-simple-image-search-json-jquery-flickr/</link>
		<comments>http://blog.comperiosearch.com/blog/2012/03/14/super-simple-image-search-json-jquery-flickr/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 11:36:02 +0000</pubDate>
		<dc:creator><![CDATA[Fergus McDowall]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[image search]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Json]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://nuggets.comperiosearch.com/?p=860</guid>
		<description><![CDATA[Here is a way to build up a really simple image search application using HTML, CSS and JQuery. One thing that can be improved about most image search apps is that browsing search history is sloooow. This image search app provides a neat solution to the history/speed issue by simply displaying results in a push-pop [...]]]></description>
				<content:encoded><![CDATA[<p>Here is a way to build up a really simple image search application using HTML, CSS and JQuery. One thing that <a href="http://therealfirstworldproblems.tumblr.com/">can be improved</a> about most image search apps is that browsing search history is sloooow.</p>
<p>This image search app provides a neat solution to the history/speed issue by simply displaying results in a <em>push-pop</em> stack. As you type in new search terms, the image thumbnails are prepended to the resultset. Your search history stays on the page, but is simply pushed further down as new thumbnails appear. Its is really fast and simple to browse your image search history.</p>
<p>Also, this search app operates entirely in 30 lines of HTML and JavaScript by using a JSON feed to the flickr API. Simple and elegant.</p>
<p><a href='http://blog.comperiosearch.com/wp-content/uploads/2012/03/super-simple-image-search.html'>Click here for the demo</a></p>
<p>Or copy and paste the code below this line:</p><pre class="crayon-plain-tag">&lt;html&gt;
  &lt;head&gt;
    &lt;script src=&quot;http://code.jquery.com/jquery-latest.js&quot;&gt;&lt;/script&gt;
    &lt;title&gt;Comperio Super Simple Image Search&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    Search for &lt;b&gt;cats, dogs, cakes&lt;/b&gt;, or anything else that takes your fancy :-)
    &lt;br /&gt;
    &lt;input id=&quot;searchterm&quot; /&gt;
    &lt;button id=&quot;search&quot;&gt;search&lt;/button&gt;
    &lt;div id=&quot;results&quot;&gt;&lt;/div&gt;
    &lt;script&gt;
      $(&quot;#search&quot;).click(function(){
        $.getJSON(&quot;http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?&quot;,
        {
          tags: $(&quot;#searchterm&quot;).val(),
          tagmode: &quot;any&quot;,
          format: &quot;json&quot;
        },
        function(data) {
          $.each(data.items, function(i,item){
            $(&quot;&lt;img/&gt;&quot;).attr(&quot;src&quot;, item.media.m).prependTo(&quot;#results&quot;);
            if ( i == 10 ) return false;
          });
        });
      });
    &lt;/script&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.comperiosearch.com/blog/2012/03/14/super-simple-image-search-json-jquery-flickr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
