Skip to content

Instantly share code, notes, and snippets.

@hirokazumiyaji
Last active October 3, 2015 15:32
Show Gist options
  • Save hirokazumiyaji/465a677c55d6d759d271 to your computer and use it in GitHub Desktop.
Save hirokazumiyaji/465a677c55d6d759d271 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Timeline</title>
</head>
<body>
<div>
<ul>
<li>
message1
</li>
<li>
message2
</li>
</ul>
</div>
<div>
<form>
<textarea></textarea>
<div id="error"></div>
<button onclick="submit">Message Post</button>
</form>
</div>
<script>
function postComment() {
$.ajax({
url: "",
type: "POST",
data: {},
success: function(data) {
},
error: function(response, status, err) {
}
});
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment