123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>dumptruc</title>
- </head>
- <body>
- <div class="page">
- <h1>dumptruc</h1>
- <ul class="todos">
- </ul>
- </div>
- <script src="https://unpkg.com/jquery@3.5.1/dist/jquery.js">
- </script>
- <script>
- $.ajax({
- url: '/todo',
- dataType: 'json',
- success: (data, _1, _2) => {
- for (const todo of data["todos"]) {
- $(".todos").append(
- `<li class="todo">${todo.item}</lix>`
- );
- }
- }});
- </script>
- </body>
- </html>
|