topical media & game development

talk show tell print

mashup-flickr-05-Step-6-badge-badge.js / js



  function jsonFlickrFeed(feed)
  {
    var imgPattern = /(\/static.flickr.com\/\d+\/\d+_[0-9a-z]+)_m\.jpg/;
    var s = "";
  
    s += '<div class="badge">';
    s += '<p class="badge-title"><a href="' + feed['link'] + '">' + feed['title'] 
        + '</a></p>';
    s += '<ul class="badge-items">';
  
    var items = feed['items'];
    for (var i = 0; i < items.length; i++)
    {
      var result = imgPattern.exec(items[i]['description']);
  
      if (result != null)
      {
        var image = result[1] + '_s.jpg';            
        s += '<li class="badge-item"><a href="' + items[i]['link'] + '"><img src="' 
            + image + '" /></a></li>';
      }
    }
  
    s += '</ul></div>';
  
    document.writeln(s);
  }
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.