mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 11:47:41 +00:00
8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
$.ajax({
|
|
url: "http://localhost:3000/runs.json?limit=25"
|
|
}).done(function(data){
|
|
for(var i = 0; i < data.length; i++){
|
|
$(".runs").append("<li class=\"list-group-item\"><p>Data for run #"+data[i].run_id+"</p></li>");
|
|
}
|
|
});
|