discordbot / client.js
joytou's picture
Upload 3 files
2d80f74 verified
raw
history blame
653 Bytes
// client-side js
// run by the browser each time your view template is loaded
// by default, you've got jQuery,
// add other scripts at the bottom of index.html
$(function () {
console.log("hello world :o");
$.get("/dreams", function (dreams) {
dreams.forEach(function (dream) {
$("<li></li>").text(dream).appendTo("ul#dreams");
});
});
$("form").submit(function (event) {
event.preventDefault();
var dream = $("input").val();
$.post("/dreams?" + $.param({ dream: dream }), function () {
$("<li></li>").text(dream).appendTo("ul#dreams");
$("input").val("");
$("input").focus();
});
});
});