Team:TU Delft/test
From 2010.igem.org
(Difference between revisions)
Line 859: | Line 859: | ||
$.get("https://2010.igem.org/Special:Statistics", function(data){ | $.get("https://2010.igem.org/Special:Statistics", function(data){ | ||
var foundit = $(data).find(".printfooter").prev(); | var foundit = $(data).find(".printfooter").prev(); | ||
- | + | $(foundit).find("li").each(function(index) { | |
- | alert( | + | alert(index + ': ' + $(this).text()); |
+ | }); | ||
}); | }); | ||