hledger/old/hledger-api/examples/01.html
2019-09-10 20:20:30 -07:00

30 lines
463 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>hledger-api example 01</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</head
<body>
<p>
Account names:
<pre></pre>
<script>
$(document).ready(
function() {
$.ajax({
url: "http://localhost:8001/api/v1/accountnames",
context: document.body,
success: function(data){
$('pre').text(data.join('\n'));
}
});
}
);
</script>
</body>
</html>