Mazel:test

From OpenWetWare
Revision as of 16:48, 7 March 2011 by Dbikard (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

<html> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() {

$.getJSON('http://www.citeulike.org/json/group/5581?callback=?', function(data) {

 var items = [];
 $.each(data, function(i) {

var cit='

  • ' + '<a href="http://dx.doi.org/'+data[i].doi+'">'+ data[i].title + '</a>
    '; cit+=data[i].authors.join(', ') + ', '; var date=data[i].published; cit+='' + data[i].journal + ' '+ date[0]; cit+='
  • '; items.push( cit ) }); $('

      ', { 'class': 'my-new-list', html: items.join() }).appendTo('#papers'); }); }); </script>

      </html>