https://www.geeksforgeeks.org/how-to-design-a-simple-calendar-using-javascript/

chevron_left chevron_right
  • Sun
  • Mon
  • Tue
  • Wed
  • Thu
  • Fri
  • Sat
    update breadcrumbs to be dynamic, pull in title as last node
    Search options: separate word search diacritics

    Ajax / Fetch

    https://davidwalsh.name/fetch

    const url = "http://example.com";
    fetch(url, {
    method : "POST",
    body: new FormData(document.getElementById("inputform")),
    // -- or --
    // body : JSON.stringify({
    // user : document.getElementById('user').value,
    // ...
    // })
    }).then(
    response => response.text() // .json(), etc.
    // same as function(response) {return response.text();}
    ).then(
    html => console.log(html)
    );